diff --git a/HEADER.txt b/HEADER.txt index 9864c8365..9d7a71f66 100644 --- a/HEADER.txt +++ b/HEADER.txt @@ -1,4 +1,4 @@ -Copyright ${year}, ${name}. +Copyright 2021-2026, Seqera. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -10,5 +10,4 @@ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. - +limitations under the License. \ No newline at end of file diff --git a/VERSION b/VERSION index 18f29586b..968640286 100644 --- a/VERSION +++ b/VERSION @@ -1,3 +1,3 @@ -0.21.0 +0.22.0 diff --git a/VERSION-API b/VERSION-API index 14e18ec65..b0b1c19c6 100644 --- a/VERSION-API +++ b/VERSION-API @@ -1,4 +1,4 @@ -1.98.0 +1.109.0 // Only first line of this file is read // This version should be bumped to the minimum version where dependent API changes were introduced // But never higher then the current Platform API Version deployed in Cloud Production: https://cloud.seqera.io/api/service-info diff --git a/build.gradle b/build.gradle index 1012ecd04..de3367e12 100644 --- a/build.gradle +++ b/build.gradle @@ -2,9 +2,9 @@ plugins { id 'java' id 'application' id 'jacoco' - id 'org.cadixdev.licenser' version '0.6.1' - id 'org.graalvm.buildtools.native' version '0.10.6' - id 'com.gradleup.shadow' version '8.3.9' + alias(libs.plugins.yumiLicenser) + alias(libs.plugins.graalvmNative) + alias(libs.plugins.shadow) } // define these in the `gradle.properties` file @@ -23,53 +23,95 @@ repositories { } dependencies { - implementation 'javax.annotation:javax.annotation-api:1.3.2' - implementation 'jakarta.annotation:jakarta.annotation-api:3.0.0' - implementation 'org.slf4j:slf4j-api:1.7.36' - implementation 'ch.qos.logback:logback-core:1.5.25' - implementation 'ch.qos.logback:logback-classic:1.5.25' + implementation(libs.javaxAnnotation) + implementation(libs.jakartaAnnotation) + implementation(libs.slf4jApi) + implementation(libs.logbackCore) + implementation(libs.logbackClassic) - implementation 'io.seqera.tower:tower-java-sdk:1.107.0' + implementation(libs.towerJavaSdk) // Upgrade transitive Jersey client dependencies to non-vulnerable 2.x version - implementation "org.glassfish.jersey.core:jersey-client:2.47" - implementation "org.glassfish.jersey.media:jersey-media-multipart:2.47" - implementation "org.glassfish.jersey.media:jersey-media-json-jackson:2.47" - implementation "org.glassfish.jersey.inject:jersey-hk2:2.47" - - implementation 'info.picocli:picocli:4.6.3' - implementation 'org.apache.commons:commons-compress:1.28.0' - implementation 'org.tukaani:xz:1.9' - implementation 'io.github.classgraph:classgraph:4.8.165' - annotationProcessor 'info.picocli:picocli-codegen:4.6.3' - - testImplementation 'org.mock-server:mockserver-client-java:5.15.0' - testImplementation 'org.mock-server:mockserver-netty:5.15.0' - testImplementation 'org.mock-server:mockserver-junit-jupiter:5.15.0' + implementation(libs.jerseyClient) + implementation(libs.jerseyMediaMultipart) + implementation(libs.jerseyMediaJsonJackson) + implementation(libs.jerseyHk2) + + implementation(libs.picocli) + implementation(libs.commonsCompress) + implementation(libs.xz) + implementation(libs.classgraph) + annotationProcessor(libs.picocliCodegen) + + testImplementation(libs.mockserverClientJava) + testImplementation(libs.mockserverNetty) + testImplementation(libs.mockserverJunitJupiter) // Upgrade transitive mock-server dependencies to non-vulnerable 2.x version - testImplementation 'commons-io:commons-io:2.20.0' + testImplementation(libs.commonsIo) - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2' - testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.2' - testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2' + testImplementation(libs.junitJupiterApi) + testImplementation(libs.junitJupiterParams) + testRuntimeOnly(libs.junitJupiterEngine) + testRuntimeOnly(libs.junitPlatformLauncher) } license { - header = project.file('HEADER.txt') - properties { - name = 'Seqera' - year = '2021-2023' + rule(file('HEADER.txt')) + exclude('**/*.properties') + exclude('**/*.xml') + exclude('gradlew') + exclude('conf/**') +} + +application { + mainClass.set('io.seqera.tower.cli.Tower') +} + +java { + toolchain { + languageVersion = JavaLanguageVersion.of(21) } - exclude '**/*.properties' - exclude 'gradlew' - exclude 'conf/**' } -task buildInfo { +graalvmNative { + toolchainDetection = true + binaries { + main { + imageName = 'tw' + mainClass = 'io.seqera.tower.cli.Tower' + configurationFileDirectories.from(file('conf')) + + if (System.env.getOrDefault("PLATFORM", "") == "linux-x86_64") { + buildArgs(['--static', '--libc=musl', '--gc=G1', '-march=compatibility']) + } + buildArgs.add('--allow-incomplete-classpath') + buildArgs.add('--report-unsupported-elements-at-runtime') + buildArgs.add('-H:+AddAllCharsets') + buildArgs.add('-H:EnableURLProtocols=https,http') + buildArgs.add('-H:+ReportExceptionStackTraces') + + javaLauncher = javaToolchains.launcherFor { + languageVersion = JavaLanguageVersion.of(21) + vendor = JvmVendorSpec.matching("Oracle Corporation") + } + + } + + test { + verbose = true + } + } +} + +configurations.configureEach { + resolutionStrategy.cacheChangingModulesFor 0, 'seconds' +} + +tasks.register('buildInfo') { doLast { def version = rootProject.file('VERSION').text.trim() def versionApi = rootProject.file('VERSION-API').readLines().get(0).trim() - def commitId = System.env.getOrDefault("GITHUB_SHA", "unknown").substring(0,7) + def commitId = System.env.getOrDefault("GITHUB_SHA", "unknown").substring(0, 7) def platform = System.env.getOrDefault("PLATFORM", "java") def info = """\ version=${version} @@ -83,24 +125,13 @@ task buildInfo { } } -java { - toolchain { - languageVersion = JavaLanguageVersion.of(21) - } -} - -compileJava { - sourceCompatibility = JavaVersion.toVersion("11") - targetCompatibility = JavaVersion.toVersion("11") +tasks.named('compileJava') { + options.release = 21 options.compilerArgs += ["-Aproject=${project.name}"] - dependsOn buildInfo + dependsOn tasks.named('buildInfo') } -application { - mainClass.set('io.seqera.tower.cli.Tower') -} - -run { +tasks.named('run') { // Pass CLI arguments via: `./gradlew run --args='arg1 arg2'`, or via: `./gradlew run -Pargs='arg1 arg2'` if (project.hasProperty('args')) { args project.args.split('\\s+') @@ -120,56 +151,22 @@ tasks.register('runReflectionConfigGenerator', JavaExec) { jvmArgs = ["-agentlib:native-image-agent=access-filter-file=conf/access-filter-file.json,config-merge-dir=conf/"] } -shadowJar { +tasks.named('shadowJar') { archiveBaseName.set('tw') archiveClassifier.set('') archiveVersion.set('') } -test { +tasks.named('test') { // Use junit platform for unit tests useJUnitPlatform() - dependsOn checkLicenses + dependsOn tasks.named('checkLicenses') // Run tests with GraalVM Tracing Agent enabled if (System.getProperty('tracing-agent')?.toBoolean()) { jvmArgs = ["-agentlib:native-image-agent=access-filter-file=conf/access-filter-file.json,config-merge-dir=conf/"] } } -graalvmNative { - toolchainDetection = true - binaries { - main { - imageName = 'tw' - mainClass = 'io.seqera.tower.cli.Tower' - configurationFileDirectories.from(file('conf')) - - if (System.env.getOrDefault("PLATFORM", "") == "linux-x86_64") { - buildArgs(['--static', '--libc=musl', '--gc=G1', '-march=compatibility']) - } - buildArgs.add('--allow-incomplete-classpath') - buildArgs.add('--report-unsupported-elements-at-runtime') - buildArgs.add('-H:+AddAllCharsets') - buildArgs.add('-H:EnableURLProtocols=https,http') - buildArgs.add('-H:+ReportExceptionStackTraces') - - javaLauncher = javaToolchains.launcherFor { - languageVersion = JavaLanguageVersion.of(21) - vendor = JvmVendorSpec.matching("Oracle Corporation") - } - - } - - test { - verbose = true - } - } -} - -configurations.all { - resolutionStrategy.cacheChangingModulesFor 0, 'seconds' -} - -jacocoTestReport { - dependsOn test // tests are required to run before generating the report +tasks.named('jacocoTestReport') { + dependsOn tasks.named('test') // tests are required to run before generating the report } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml new file mode 100644 index 000000000..8f659ecd5 --- /dev/null +++ b/gradle/libs.versions.toml @@ -0,0 +1,47 @@ +[versions] +classgraphVersion = "4.8.180" +commonsCompressVersion = "1.28.0" +commonsIoVersion = "2.21.0" +graalvmNativeVersion = "0.10.6" +jakartaAnnotationVersion = "3.0.0" +javaxAnnotationVersion = "1.3.2" +jerseyVersion = "2.47" +junitVersion = "5.12.2" +licenserVersion = "2.2.2" +logbackVersion = "1.5.32" +mockserverVersion = "5.15.0" +picocliVersion = "4.6.3" +shadowVersion = "9.3.1" +slf4jVersion = "2.0.17" +towerJavaSdkVersion = "1.107.0" +xzVersion = "1.10" + +[libraries] +classgraph = { group = "io.github.classgraph", name = "classgraph", version.ref = "classgraphVersion" } +commonsCompress = { group = "org.apache.commons", name = "commons-compress", version.ref = "commonsCompressVersion" } +commonsIo = { group = "commons-io", name = "commons-io", version.ref = "commonsIoVersion" } +jakartaAnnotation = { group = "jakarta.annotation", name = "jakarta.annotation-api", version.ref = "jakartaAnnotationVersion" } +javaxAnnotation = { group = "javax.annotation", name = "javax.annotation-api", version.ref = "javaxAnnotationVersion" } +jerseyClient = { group = "org.glassfish.jersey.core", name = "jersey-client", version.ref = "jerseyVersion" } +jerseyHk2 = { group = "org.glassfish.jersey.inject", name = "jersey-hk2", version.ref = "jerseyVersion" } +jerseyMediaJsonJackson = { group = "org.glassfish.jersey.media", name = "jersey-media-json-jackson", version.ref = "jerseyVersion" } +jerseyMediaMultipart = { group = "org.glassfish.jersey.media", name = "jersey-media-multipart", version.ref = "jerseyVersion" } +junitJupiterApi = { group = "org.junit.jupiter", name = "junit-jupiter-api", version.ref = "junitVersion" } +junitJupiterEngine = { group = "org.junit.jupiter", name = "junit-jupiter-engine", version.ref = "junitVersion" } +junitJupiterParams = { group = "org.junit.jupiter", name = "junit-jupiter-params", version.ref = "junitVersion" } +junitPlatformLauncher = { group = "org.junit.platform", name = "junit-platform-launcher" } +logbackClassic = { group = "ch.qos.logback", name = "logback-classic", version.ref = "logbackVersion" } +logbackCore = { group = "ch.qos.logback", name = "logback-core", version.ref = "logbackVersion" } +mockserverClientJava = { group = "org.mock-server", name = "mockserver-client-java", version.ref = "mockserverVersion" } +mockserverJunitJupiter = { group = "org.mock-server", name = "mockserver-junit-jupiter", version.ref = "mockserverVersion" } +mockserverNetty = { group = "org.mock-server", name = "mockserver-netty", version.ref = "mockserverVersion" } +picocli = { group = "info.picocli", name = "picocli", version.ref = "picocliVersion" } +picocliCodegen = { group = "info.picocli", name = "picocli-codegen", version.ref = "picocliVersion" } +slf4jApi = { group = "org.slf4j", name = "slf4j-api", version.ref = "slf4jVersion" } +towerJavaSdk = { group = "io.seqera.tower", name = "tower-java-sdk", version.ref = "towerJavaSdkVersion" } +xz = { group = "org.tukaani", name = "xz", version.ref = "xzVersion" } + +[plugins] +yumiLicenser = { id = "dev.yumi.gradle.licenser", version.ref = "licenserVersion" } +graalvmNative = { id = "org.graalvm.buildtools.native", version.ref = "graalvmNativeVersion" } +shadow = { id = "com.gradleup.shadow", version.ref = "shadowVersion" } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index d4081da47..37f78a6af 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/settings.gradle b/settings.gradle index 0906e3e92..1b53493d9 100644 --- a/settings.gradle +++ b/settings.gradle @@ -11,7 +11,7 @@ plugins { // required to download the toolchain (jdk) from a remote repository // https://github.com/gradle/foojay-toolchains // https://docs.gradle.org/current/userguide/toolchains.html#sub:download_repositories - id("org.gradle.toolchains.foojay-resolver-convention") version "0.7.0" + id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0" } rootProject.name = 'tower-cli' diff --git a/src/main/java/io/seqera/tower/cli/Tower.java b/src/main/java/io/seqera/tower/cli/Tower.java index e2daa4965..4cf2f248c 100644 --- a/src/main/java/io/seqera/tower/cli/Tower.java +++ b/src/main/java/io/seqera/tower/cli/Tower.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/main/java/io/seqera/tower/cli/commands/AbstractApiCmd.java b/src/main/java/io/seqera/tower/cli/commands/AbstractApiCmd.java index 96edd0488..93204e1d3 100644 --- a/src/main/java/io/seqera/tower/cli/commands/AbstractApiCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/AbstractApiCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/AbstractCmd.java b/src/main/java/io/seqera/tower/cli/commands/AbstractCmd.java index 2c1c50ce6..1cdddc025 100644 --- a/src/main/java/io/seqera/tower/cli/commands/AbstractCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/AbstractCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/AbstractRootCmd.java b/src/main/java/io/seqera/tower/cli/commands/AbstractRootCmd.java index 94e247bde..116b57672 100644 --- a/src/main/java/io/seqera/tower/cli/commands/AbstractRootCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/AbstractRootCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/ActionsCmd.java b/src/main/java/io/seqera/tower/cli/commands/ActionsCmd.java index 5271c9d30..a51b118d4 100644 --- a/src/main/java/io/seqera/tower/cli/commands/ActionsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/ActionsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/CollaboratorsCmd.java b/src/main/java/io/seqera/tower/cli/commands/CollaboratorsCmd.java index 1fac635aa..21e09a4ce 100644 --- a/src/main/java/io/seqera/tower/cli/commands/CollaboratorsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/CollaboratorsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/ComputeEnvsCmd.java b/src/main/java/io/seqera/tower/cli/commands/ComputeEnvsCmd.java index d17a240c4..7fcfd17da 100644 --- a/src/main/java/io/seqera/tower/cli/commands/ComputeEnvsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/ComputeEnvsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/CredentialsCmd.java b/src/main/java/io/seqera/tower/cli/commands/CredentialsCmd.java index 91fb6284a..58e57590e 100644 --- a/src/main/java/io/seqera/tower/cli/commands/CredentialsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/CredentialsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/DataLinksCmd.java b/src/main/java/io/seqera/tower/cli/commands/DataLinksCmd.java index 153d1f907..d802cd21a 100644 --- a/src/main/java/io/seqera/tower/cli/commands/DataLinksCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/DataLinksCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/DatasetsCmd.java b/src/main/java/io/seqera/tower/cli/commands/DatasetsCmd.java index c72a6233c..f9bb73d0f 100644 --- a/src/main/java/io/seqera/tower/cli/commands/DatasetsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/DatasetsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/InfoCmd.java b/src/main/java/io/seqera/tower/cli/commands/InfoCmd.java index b14de6b79..5b5ab3bb7 100644 --- a/src/main/java/io/seqera/tower/cli/commands/InfoCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/InfoCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/LaunchCmd.java b/src/main/java/io/seqera/tower/cli/commands/LaunchCmd.java index 1f22d2c6b..8f8ffe067 100644 --- a/src/main/java/io/seqera/tower/cli/commands/LaunchCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/LaunchCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/MembersCmd.java b/src/main/java/io/seqera/tower/cli/commands/MembersCmd.java index b29f0b7eb..2efc77e7d 100644 --- a/src/main/java/io/seqera/tower/cli/commands/MembersCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/MembersCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/OrganizationsCmd.java b/src/main/java/io/seqera/tower/cli/commands/OrganizationsCmd.java index c2d693a05..ed8a99a6e 100644 --- a/src/main/java/io/seqera/tower/cli/commands/OrganizationsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/OrganizationsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/ParticipantsCmd.java b/src/main/java/io/seqera/tower/cli/commands/ParticipantsCmd.java index 250d78489..decb9b5a2 100644 --- a/src/main/java/io/seqera/tower/cli/commands/ParticipantsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/ParticipantsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/PipelineSchemasCmd.java b/src/main/java/io/seqera/tower/cli/commands/PipelineSchemasCmd.java index f54cec9bf..450f8218b 100644 --- a/src/main/java/io/seqera/tower/cli/commands/PipelineSchemasCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/PipelineSchemasCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/PipelinesCmd.java b/src/main/java/io/seqera/tower/cli/commands/PipelinesCmd.java index d684935e7..7fd2fcd5b 100644 --- a/src/main/java/io/seqera/tower/cli/commands/PipelinesCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/PipelinesCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/RunsCmd.java b/src/main/java/io/seqera/tower/cli/commands/RunsCmd.java index 91dab1387..ade2bcc87 100644 --- a/src/main/java/io/seqera/tower/cli/commands/RunsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/RunsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/SecretsCmd.java b/src/main/java/io/seqera/tower/cli/commands/SecretsCmd.java index f1c1cf325..3aa3d9125 100644 --- a/src/main/java/io/seqera/tower/cli/commands/SecretsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/SecretsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/StudiosCmd.java b/src/main/java/io/seqera/tower/cli/commands/StudiosCmd.java index d643d91f0..637d3d239 100644 --- a/src/main/java/io/seqera/tower/cli/commands/StudiosCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/StudiosCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/TeamsCmd.java b/src/main/java/io/seqera/tower/cli/commands/TeamsCmd.java index e1899c87f..9424be4e4 100644 --- a/src/main/java/io/seqera/tower/cli/commands/TeamsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/TeamsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/WorkspacesCmd.java b/src/main/java/io/seqera/tower/cli/commands/WorkspacesCmd.java index 4d8dad9bc..abf57dafc 100644 --- a/src/main/java/io/seqera/tower/cli/commands/WorkspacesCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/WorkspacesCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands; diff --git a/src/main/java/io/seqera/tower/cli/commands/actions/AbstractActionsCmd.java b/src/main/java/io/seqera/tower/cli/commands/actions/AbstractActionsCmd.java index 8fa8956ec..569a7adf7 100644 --- a/src/main/java/io/seqera/tower/cli/commands/actions/AbstractActionsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/actions/AbstractActionsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.actions; diff --git a/src/main/java/io/seqera/tower/cli/commands/actions/ActionRefOptions.java b/src/main/java/io/seqera/tower/cli/commands/actions/ActionRefOptions.java index 9b7588c18..d78087617 100644 --- a/src/main/java/io/seqera/tower/cli/commands/actions/ActionRefOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/actions/ActionRefOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.actions; diff --git a/src/main/java/io/seqera/tower/cli/commands/actions/ActionsLabelsManager.java b/src/main/java/io/seqera/tower/cli/commands/actions/ActionsLabelsManager.java index 604e817db..5ec61a0b2 100644 --- a/src/main/java/io/seqera/tower/cli/commands/actions/ActionsLabelsManager.java +++ b/src/main/java/io/seqera/tower/cli/commands/actions/ActionsLabelsManager.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.actions; diff --git a/src/main/java/io/seqera/tower/cli/commands/actions/AddCmd.java b/src/main/java/io/seqera/tower/cli/commands/actions/AddCmd.java index dfaa1ce48..cbec5379c 100644 --- a/src/main/java/io/seqera/tower/cli/commands/actions/AddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/actions/AddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.actions; diff --git a/src/main/java/io/seqera/tower/cli/commands/actions/DeleteCmd.java b/src/main/java/io/seqera/tower/cli/commands/actions/DeleteCmd.java index 137198c16..41c32ffda 100644 --- a/src/main/java/io/seqera/tower/cli/commands/actions/DeleteCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/actions/DeleteCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.actions; diff --git a/src/main/java/io/seqera/tower/cli/commands/actions/LabelsCmd.java b/src/main/java/io/seqera/tower/cli/commands/actions/LabelsCmd.java index 817cdcdf2..09ea7aaeb 100644 --- a/src/main/java/io/seqera/tower/cli/commands/actions/LabelsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/actions/LabelsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.actions; diff --git a/src/main/java/io/seqera/tower/cli/commands/actions/ListCmd.java b/src/main/java/io/seqera/tower/cli/commands/actions/ListCmd.java index 2c38206e3..c6fadf4b5 100644 --- a/src/main/java/io/seqera/tower/cli/commands/actions/ListCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/actions/ListCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.actions; diff --git a/src/main/java/io/seqera/tower/cli/commands/actions/UpdateCmd.java b/src/main/java/io/seqera/tower/cli/commands/actions/UpdateCmd.java index 4d85d54bf..23fe8f736 100644 --- a/src/main/java/io/seqera/tower/cli/commands/actions/UpdateCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/actions/UpdateCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.actions; diff --git a/src/main/java/io/seqera/tower/cli/commands/actions/ViewCmd.java b/src/main/java/io/seqera/tower/cli/commands/actions/ViewCmd.java index 0f9af828c..d8c4a105a 100644 --- a/src/main/java/io/seqera/tower/cli/commands/actions/ViewCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/actions/ViewCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.actions; diff --git a/src/main/java/io/seqera/tower/cli/commands/actions/add/AbstractAddCmd.java b/src/main/java/io/seqera/tower/cli/commands/actions/add/AbstractAddCmd.java index a93e3e921..47548526e 100644 --- a/src/main/java/io/seqera/tower/cli/commands/actions/add/AbstractAddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/actions/add/AbstractAddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.actions.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/actions/add/AddGitHubCmd.java b/src/main/java/io/seqera/tower/cli/commands/actions/add/AddGitHubCmd.java index 7e472a801..b26cb0148 100644 --- a/src/main/java/io/seqera/tower/cli/commands/actions/add/AddGitHubCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/actions/add/AddGitHubCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.actions.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/actions/add/AddTowerCmd.java b/src/main/java/io/seqera/tower/cli/commands/actions/add/AddTowerCmd.java index 270f7dd11..f476f2d47 100644 --- a/src/main/java/io/seqera/tower/cli/commands/actions/add/AddTowerCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/actions/add/AddTowerCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.actions.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/collaborators/AbstractCollaboratorsCmd.java b/src/main/java/io/seqera/tower/cli/commands/collaborators/AbstractCollaboratorsCmd.java index 2ccbf5f2d..3a124c790 100644 --- a/src/main/java/io/seqera/tower/cli/commands/collaborators/AbstractCollaboratorsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/collaborators/AbstractCollaboratorsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.collaborators; diff --git a/src/main/java/io/seqera/tower/cli/commands/collaborators/ListCmd.java b/src/main/java/io/seqera/tower/cli/commands/collaborators/ListCmd.java index fe560274f..c753546f6 100644 --- a/src/main/java/io/seqera/tower/cli/commands/collaborators/ListCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/collaborators/ListCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.collaborators; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/AbstractComputeEnvCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/AbstractComputeEnvCmd.java index 862cc17a7..f890cada4 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/AbstractComputeEnvCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/AbstractComputeEnvCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/AddCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/AddCmd.java index 479dee512..d657101a5 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/AddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/AddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/ComputeEnvRefOptions.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/ComputeEnvRefOptions.java index dac052041..b8637739c 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/ComputeEnvRefOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/ComputeEnvRefOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/DeleteCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/DeleteCmd.java index ac3b9b214..d40d647a7 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/DeleteCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/DeleteCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/ExportCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/ExportCmd.java index 27e710ec8..b17cd9f1d 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/ExportCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/ExportCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/ImportCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/ImportCmd.java index 12340a998..07332299c 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/ImportCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/ImportCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/ListCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/ListCmd.java index 408c3395a..c3773eccb 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/ListCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/ListCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/PrimaryCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/PrimaryCmd.java index 41cb4f3b8..46a1bd1a4 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/PrimaryCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/PrimaryCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/UpdateCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/UpdateCmd.java index 9fff0b6a0..6e0a3e5d9 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/UpdateCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/UpdateCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/ViewCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/ViewCmd.java index 4af3eb5a5..01635f0e4 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/ViewCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/ViewCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AbstractAddCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AbstractAddCmd.java index 69995affb..5ddf4b4fc 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AbstractAddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AbstractAddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAltairCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAltairCmd.java index 549527b61..dd0a562e1 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAltairCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAltairCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAwsCloudCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAwsCloudCmd.java index ed604ca8a..80d59ea1c 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAwsCloudCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAwsCloudCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAwsCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAwsCmd.java index 87a6146a2..9782c6dc4 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAwsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAwsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAzureCloudCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAzureCloudCmd.java index 8b972f597..096be9a91 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAzureCloudCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAzureCloudCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAzureCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAzureCmd.java index ae41cce48..e54a60fd7 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAzureCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddAzureCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddEksCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddEksCmd.java index 623b0102c..9435e161f 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddEksCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddEksCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddGkeCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddGkeCmd.java index e82f263f4..b8e679e33 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddGkeCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddGkeCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddGoogleBatchCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddGoogleBatchCmd.java index 7056369ae..02bccbc65 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddGoogleBatchCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddGoogleBatchCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddGoogleCloudCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddGoogleCloudCmd.java index b52021c41..d1a7d3403 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddGoogleCloudCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddGoogleCloudCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddK8sCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddK8sCmd.java index 7fc2d695c..4feebc472 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddK8sCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddK8sCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddLsfCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddLsfCmd.java index 889183de9..e788bae5a 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddLsfCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddLsfCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddMoabCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddMoabCmd.java index a2406e133..0ead9c860 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddMoabCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddMoabCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddSeqeraComputeCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddSeqeraComputeCmd.java index 6ba97c178..9294adadb 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddSeqeraComputeCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddSeqeraComputeCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddSlurmCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddSlurmCmd.java index ac9121eea..8402fdd59 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddSlurmCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddSlurmCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddUgeCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddUgeCmd.java index c8aec4953..20f57e215 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddUgeCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/AddUgeCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/aws/AddAwsForgeCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/aws/AddAwsForgeCmd.java index 7c617fcc1..e70534ab1 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/aws/AddAwsForgeCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/aws/AddAwsForgeCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add.aws; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/aws/AddAwsManualCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/aws/AddAwsManualCmd.java index 330f6ce36..7d26d45d6 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/aws/AddAwsManualCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/aws/AddAwsManualCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add.aws; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/azure/AddAzureForgeCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/azure/AddAzureForgeCmd.java index d5ea7c76e..0e597045d 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/azure/AddAzureForgeCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/azure/AddAzureForgeCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add.azure; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/azure/AddAzureManualCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/azure/AddAzureManualCmd.java index 1c11fa3dc..9289f6d62 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/azure/AddAzureManualCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/add/azure/AddAzureManualCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.add.azure; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AbstractPlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AbstractPlatform.java index 77c39b53e..2843cf29f 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AbstractPlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AbstractPlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AltairPlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AltairPlatform.java index 3a7c00b20..17a2d4470 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AltairPlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AltairPlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AwsBatchForgePlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AwsBatchForgePlatform.java index ecf044b7f..a4a898d85 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AwsBatchForgePlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AwsBatchForgePlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AwsBatchManualPlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AwsBatchManualPlatform.java index 4942e79ec..82c67dc2d 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AwsBatchManualPlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AwsBatchManualPlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AwsCloudPlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AwsCloudPlatform.java index bf99ef370..1d1994364 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AwsCloudPlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AwsCloudPlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AzBatchForgePlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AzBatchForgePlatform.java index 6d2136c8b..650a0bf5b 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AzBatchForgePlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AzBatchForgePlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AzBatchManualPlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AzBatchManualPlatform.java index 5747b80b7..4b01de24a 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AzBatchManualPlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AzBatchManualPlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AzCloudPlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AzCloudPlatform.java index 301f896b8..083c24af2 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AzCloudPlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/AzCloudPlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/EksPlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/EksPlatform.java index 46a01e3a4..5602d5f62 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/EksPlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/EksPlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/GkePlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/GkePlatform.java index 2a226f404..da9fe318a 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/GkePlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/GkePlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/GoogleBatchPlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/GoogleBatchPlatform.java index 3066777d4..8e786f65e 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/GoogleBatchPlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/GoogleBatchPlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/GoogleCloudPlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/GoogleCloudPlatform.java index f1140604d..03c47a629 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/GoogleCloudPlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/GoogleCloudPlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/K8sPlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/K8sPlatform.java index ff9b2aebe..5af06b7f7 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/K8sPlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/K8sPlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/LsfPlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/LsfPlatform.java index 42d04d023..fb0b5478c 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/LsfPlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/LsfPlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/MoabPlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/MoabPlatform.java index ba8879b64..881d9bf95 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/MoabPlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/MoabPlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/Platform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/Platform.java index d2f859ccf..cde4f841d 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/Platform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/Platform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/SeqeraComputePlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/SeqeraComputePlatform.java index 5d25c1caf..86f9f1e6f 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/SeqeraComputePlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/SeqeraComputePlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/SlurmPlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/SlurmPlatform.java index 1776c7352..3412ea5c7 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/SlurmPlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/SlurmPlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/UnivaPlatform.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/UnivaPlatform.java index 2f2c33119..7ed1a1513 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/UnivaPlatform.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/platforms/UnivaPlatform.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.platforms; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/primary/AbstractComputeEnvsPrimaryCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/primary/AbstractComputeEnvsPrimaryCmd.java index 18db3acd4..0eff6301f 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/primary/AbstractComputeEnvsPrimaryCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/primary/AbstractComputeEnvsPrimaryCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.primary; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/primary/GetCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/primary/GetCmd.java index d666e819f..9e127643a 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/primary/GetCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/primary/GetCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.primary; diff --git a/src/main/java/io/seqera/tower/cli/commands/computeenvs/primary/SetCmd.java b/src/main/java/io/seqera/tower/cli/commands/computeenvs/primary/SetCmd.java index fb9e95f6f..497627e3d 100644 --- a/src/main/java/io/seqera/tower/cli/commands/computeenvs/primary/SetCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/computeenvs/primary/SetCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.computeenvs.primary; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/AbstractCredentialsCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/AbstractCredentialsCmd.java index 15dc3cfe2..1a802f031 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/AbstractCredentialsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/AbstractCredentialsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/AddCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/AddCmd.java index cb7c50b14..968230768 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/AddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/AddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/CredentialsRefOptions.java b/src/main/java/io/seqera/tower/cli/commands/credentials/CredentialsRefOptions.java index e082d7911..10800984d 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/CredentialsRefOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/CredentialsRefOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/DeleteCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/DeleteCmd.java index 85854acaf..9ef64ab3d 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/DeleteCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/DeleteCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/ListCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/ListCmd.java index ea014cc02..5add31d95 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/ListCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/ListCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/UpdateCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/UpdateCmd.java index 267360074..2b75d601a 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/UpdateCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/UpdateCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AbstractAddCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AbstractAddCmd.java index 6607a9de9..29040dd5b 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AbstractAddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AbstractAddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddAgentCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddAgentCmd.java index 85eafe04d..ce338417d 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddAgentCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddAgentCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddAwsCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddAwsCmd.java index 0af6fc59a..a4caa7862 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddAwsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddAwsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddAzureCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddAzureCmd.java index cb2fa1677..3c872e78d 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddAzureCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddAzureCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddBitbucketCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddBitbucketCmd.java index 69b850e8c..f42a3d178 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddBitbucketCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddBitbucketCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddCodeCommitCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddCodeCommitCmd.java index 59c2c99af..a80d5dc1d 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddCodeCommitCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddCodeCommitCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddContainerRegistryCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddContainerRegistryCmd.java index c59a615b0..6dbba135f 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddContainerRegistryCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddContainerRegistryCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddGiteaCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddGiteaCmd.java index 74b4fa299..fd64f6b7f 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddGiteaCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddGiteaCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddGithubCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddGithubCmd.java index f14123207..bbc8c7003 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddGithubCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddGithubCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddGitlabCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddGitlabCmd.java index b150183fd..2da5c1534 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddGitlabCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddGitlabCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddGoogleCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddGoogleCmd.java index dda24159b..5858d04ac 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddGoogleCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddGoogleCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddK8sCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddK8sCmd.java index 0ba0e1606..0f68f153f 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddK8sCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddK8sCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddSshCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddSshCmd.java index f525b53f7..668fbbdc6 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddSshCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/add/AddSshCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.add; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/AbstractGitProvider.java b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/AbstractGitProvider.java index 4914141dd..ed9f2286a 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/AbstractGitProvider.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/AbstractGitProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.providers; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/AbstractProvider.java b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/AbstractProvider.java index 03468d0a5..be78bed47 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/AbstractProvider.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/AbstractProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.providers; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/AwsProvider.java b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/AwsProvider.java index 779da851b..e6e234012 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/AwsProvider.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/AwsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.providers; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/AzureProvider.java b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/AzureProvider.java index 51779e272..003010f35 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/AzureProvider.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/AzureProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.providers; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/BitbucketProvider.java b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/BitbucketProvider.java index 287774541..d75d5dfb2 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/BitbucketProvider.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/BitbucketProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.providers; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/CodeCommitProvider.java b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/CodeCommitProvider.java index 8c5f4a4ad..05cc3a747 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/CodeCommitProvider.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/CodeCommitProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.providers; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/ContainerRegistryProvider.java b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/ContainerRegistryProvider.java index 86451b822..6ce3b0a3e 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/ContainerRegistryProvider.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/ContainerRegistryProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.providers; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/CredentialsProvider.java b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/CredentialsProvider.java index 1b9834423..169fb46f6 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/CredentialsProvider.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/CredentialsProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.providers; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/GiteaProvider.java b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/GiteaProvider.java index 0a7055bfe..8c732a4c2 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/GiteaProvider.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/GiteaProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.providers; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/GithubProvider.java b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/GithubProvider.java index b9c895e69..e7e87e5e5 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/GithubProvider.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/GithubProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.providers; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/GitlabProvider.java b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/GitlabProvider.java index c7711afe6..876e532d1 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/GitlabProvider.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/GitlabProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.providers; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/GoogleProvider.java b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/GoogleProvider.java index d8f9a3b85..18aa0f76a 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/GoogleProvider.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/GoogleProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.providers; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/K8sProvider.java b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/K8sProvider.java index 8c75bb2a5..2102c108a 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/K8sProvider.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/K8sProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.providers; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/SshProvider.java b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/SshProvider.java index 16f25307f..912e29a5a 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/SshProvider.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/SshProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.providers; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/TwAgentProvider.java b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/TwAgentProvider.java index 512e3bef1..cb83c6762 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/providers/TwAgentProvider.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/providers/TwAgentProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.providers; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/update/AbstractUpdateCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/update/AbstractUpdateCmd.java index 14123524c..13fdc6cb8 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/update/AbstractUpdateCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/update/AbstractUpdateCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.update; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateAgentCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateAgentCmd.java index 08067d784..ce11ae9f4 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateAgentCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateAgentCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.update; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateAwsCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateAwsCmd.java index 4a033bc8d..c4deb7c5d 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateAwsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateAwsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.update; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateAzureCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateAzureCmd.java index 18781fedb..239ca2194 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateAzureCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateAzureCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.update; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateBitbucketCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateBitbucketCmd.java index a1a96d30a..b47018527 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateBitbucketCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateBitbucketCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.update; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateCodeCommitCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateCodeCommitCmd.java index 3a8d8ac01..fdfc282ac 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateCodeCommitCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateCodeCommitCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.update; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateContainerRegistryCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateContainerRegistryCmd.java index 1df9ef01a..b94b77c14 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateContainerRegistryCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateContainerRegistryCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.update; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateGithubCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateGithubCmd.java index 95826e8cc..47df0e72f 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateGithubCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateGithubCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.update; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateGitlabCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateGitlabCmd.java index bc04d0364..ecd021a62 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateGitlabCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateGitlabCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.update; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateGoogleCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateGoogleCmd.java index 62db13313..c83a10f5e 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateGoogleCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateGoogleCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.update; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateK8sCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateK8sCmd.java index 4c806d8b9..edab5a671 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateK8sCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateK8sCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.update; diff --git a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateSshCmd.java b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateSshCmd.java index 773bd8466..2059abf6f 100644 --- a/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateSshCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/credentials/update/UpdateSshCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.credentials.update; diff --git a/src/main/java/io/seqera/tower/cli/commands/data/links/AbstractDataLinksCmd.java b/src/main/java/io/seqera/tower/cli/commands/data/links/AbstractDataLinksCmd.java index 44e0cef65..af17f22ce 100644 --- a/src/main/java/io/seqera/tower/cli/commands/data/links/AbstractDataLinksCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/data/links/AbstractDataLinksCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.data.links; diff --git a/src/main/java/io/seqera/tower/cli/commands/data/links/AddCmd.java b/src/main/java/io/seqera/tower/cli/commands/data/links/AddCmd.java index d37a95c80..dd99a3ddd 100644 --- a/src/main/java/io/seqera/tower/cli/commands/data/links/AddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/data/links/AddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.data.links; diff --git a/src/main/java/io/seqera/tower/cli/commands/data/links/BrowseCmd.java b/src/main/java/io/seqera/tower/cli/commands/data/links/BrowseCmd.java index df23e6834..421742fc7 100644 --- a/src/main/java/io/seqera/tower/cli/commands/data/links/BrowseCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/data/links/BrowseCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.data.links; diff --git a/src/main/java/io/seqera/tower/cli/commands/data/links/DataLinkRefOptions.java b/src/main/java/io/seqera/tower/cli/commands/data/links/DataLinkRefOptions.java index 6075339ef..3bb67004e 100644 --- a/src/main/java/io/seqera/tower/cli/commands/data/links/DataLinkRefOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/data/links/DataLinkRefOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.data.links; diff --git a/src/main/java/io/seqera/tower/cli/commands/data/links/DataLinkService.java b/src/main/java/io/seqera/tower/cli/commands/data/links/DataLinkService.java index 826e6b98d..9a9f277eb 100644 --- a/src/main/java/io/seqera/tower/cli/commands/data/links/DataLinkService.java +++ b/src/main/java/io/seqera/tower/cli/commands/data/links/DataLinkService.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.data.links; diff --git a/src/main/java/io/seqera/tower/cli/commands/data/links/DeleteCmd.java b/src/main/java/io/seqera/tower/cli/commands/data/links/DeleteCmd.java index 1a8d0748d..afcc31836 100644 --- a/src/main/java/io/seqera/tower/cli/commands/data/links/DeleteCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/data/links/DeleteCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.data.links; diff --git a/src/main/java/io/seqera/tower/cli/commands/data/links/DownloadCmd.java b/src/main/java/io/seqera/tower/cli/commands/data/links/DownloadCmd.java index d2cfc1ded..5b41a4f9b 100644 --- a/src/main/java/io/seqera/tower/cli/commands/data/links/DownloadCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/data/links/DownloadCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.data.links; diff --git a/src/main/java/io/seqera/tower/cli/commands/data/links/ListCmd.java b/src/main/java/io/seqera/tower/cli/commands/data/links/ListCmd.java index b170e7f5d..6bfd63623 100644 --- a/src/main/java/io/seqera/tower/cli/commands/data/links/ListCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/data/links/ListCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.data.links; diff --git a/src/main/java/io/seqera/tower/cli/commands/data/links/SearchOption.java b/src/main/java/io/seqera/tower/cli/commands/data/links/SearchOption.java index 4a2f94d2e..9377f4710 100644 --- a/src/main/java/io/seqera/tower/cli/commands/data/links/SearchOption.java +++ b/src/main/java/io/seqera/tower/cli/commands/data/links/SearchOption.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.data.links; diff --git a/src/main/java/io/seqera/tower/cli/commands/data/links/UpdateCmd.java b/src/main/java/io/seqera/tower/cli/commands/data/links/UpdateCmd.java index 683c01495..cce755fea 100644 --- a/src/main/java/io/seqera/tower/cli/commands/data/links/UpdateCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/data/links/UpdateCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.data.links; diff --git a/src/main/java/io/seqera/tower/cli/commands/data/links/UploadCmd.java b/src/main/java/io/seqera/tower/cli/commands/data/links/UploadCmd.java index b8ba1cfa0..90b55036b 100644 --- a/src/main/java/io/seqera/tower/cli/commands/data/links/UploadCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/data/links/UploadCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.data.links; diff --git a/src/main/java/io/seqera/tower/cli/commands/data/links/upload/AbstractProviderUploader.java b/src/main/java/io/seqera/tower/cli/commands/data/links/upload/AbstractProviderUploader.java index e912b9328..952536244 100644 --- a/src/main/java/io/seqera/tower/cli/commands/data/links/upload/AbstractProviderUploader.java +++ b/src/main/java/io/seqera/tower/cli/commands/data/links/upload/AbstractProviderUploader.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.data.links.upload; diff --git a/src/main/java/io/seqera/tower/cli/commands/data/links/upload/AwsUploader.java b/src/main/java/io/seqera/tower/cli/commands/data/links/upload/AwsUploader.java index 1414182e4..7819d3d52 100644 --- a/src/main/java/io/seqera/tower/cli/commands/data/links/upload/AwsUploader.java +++ b/src/main/java/io/seqera/tower/cli/commands/data/links/upload/AwsUploader.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.data.links.upload; diff --git a/src/main/java/io/seqera/tower/cli/commands/data/links/upload/AzureUploader.java b/src/main/java/io/seqera/tower/cli/commands/data/links/upload/AzureUploader.java index c03dad8d4..1df8b897e 100644 --- a/src/main/java/io/seqera/tower/cli/commands/data/links/upload/AzureUploader.java +++ b/src/main/java/io/seqera/tower/cli/commands/data/links/upload/AzureUploader.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.data.links.upload; diff --git a/src/main/java/io/seqera/tower/cli/commands/data/links/upload/CloudProviderUploader.java b/src/main/java/io/seqera/tower/cli/commands/data/links/upload/CloudProviderUploader.java index e4158244f..6147649af 100644 --- a/src/main/java/io/seqera/tower/cli/commands/data/links/upload/CloudProviderUploader.java +++ b/src/main/java/io/seqera/tower/cli/commands/data/links/upload/CloudProviderUploader.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.data.links.upload; diff --git a/src/main/java/io/seqera/tower/cli/commands/data/links/upload/GoogleUploader.java b/src/main/java/io/seqera/tower/cli/commands/data/links/upload/GoogleUploader.java index 1079320d5..4664ad3f4 100644 --- a/src/main/java/io/seqera/tower/cli/commands/data/links/upload/GoogleUploader.java +++ b/src/main/java/io/seqera/tower/cli/commands/data/links/upload/GoogleUploader.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.data.links.upload; diff --git a/src/main/java/io/seqera/tower/cli/commands/datasets/AbstractDatasetsCmd.java b/src/main/java/io/seqera/tower/cli/commands/datasets/AbstractDatasetsCmd.java index fd81e2a10..a1b752dd1 100644 --- a/src/main/java/io/seqera/tower/cli/commands/datasets/AbstractDatasetsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/datasets/AbstractDatasetsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.datasets; diff --git a/src/main/java/io/seqera/tower/cli/commands/datasets/AddCmd.java b/src/main/java/io/seqera/tower/cli/commands/datasets/AddCmd.java index ecf7b6845..3070c12d0 100644 --- a/src/main/java/io/seqera/tower/cli/commands/datasets/AddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/datasets/AddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.datasets; diff --git a/src/main/java/io/seqera/tower/cli/commands/datasets/DatasetRefOptions.java b/src/main/java/io/seqera/tower/cli/commands/datasets/DatasetRefOptions.java index f3a8b528c..d125aaeb9 100644 --- a/src/main/java/io/seqera/tower/cli/commands/datasets/DatasetRefOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/datasets/DatasetRefOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.datasets; diff --git a/src/main/java/io/seqera/tower/cli/commands/datasets/DeleteCmd.java b/src/main/java/io/seqera/tower/cli/commands/datasets/DeleteCmd.java index 2865f120c..c7f7c3655 100644 --- a/src/main/java/io/seqera/tower/cli/commands/datasets/DeleteCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/datasets/DeleteCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.datasets; diff --git a/src/main/java/io/seqera/tower/cli/commands/datasets/DownloadCmd.java b/src/main/java/io/seqera/tower/cli/commands/datasets/DownloadCmd.java index d406850ea..ae7d0833c 100644 --- a/src/main/java/io/seqera/tower/cli/commands/datasets/DownloadCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/datasets/DownloadCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.datasets; diff --git a/src/main/java/io/seqera/tower/cli/commands/datasets/ListCmd.java b/src/main/java/io/seqera/tower/cli/commands/datasets/ListCmd.java index 20f7ed47a..fb390f78b 100644 --- a/src/main/java/io/seqera/tower/cli/commands/datasets/ListCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/datasets/ListCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.datasets; diff --git a/src/main/java/io/seqera/tower/cli/commands/datasets/UpdateCmd.java b/src/main/java/io/seqera/tower/cli/commands/datasets/UpdateCmd.java index 85cfd94df..ab6b4dbf5 100644 --- a/src/main/java/io/seqera/tower/cli/commands/datasets/UpdateCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/datasets/UpdateCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.datasets; diff --git a/src/main/java/io/seqera/tower/cli/commands/datasets/UrlCmd.java b/src/main/java/io/seqera/tower/cli/commands/datasets/UrlCmd.java index 1e08323ac..fb89a957c 100644 --- a/src/main/java/io/seqera/tower/cli/commands/datasets/UrlCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/datasets/UrlCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.datasets; diff --git a/src/main/java/io/seqera/tower/cli/commands/datasets/ViewCmd.java b/src/main/java/io/seqera/tower/cli/commands/datasets/ViewCmd.java index d85aab43c..1897bd529 100644 --- a/src/main/java/io/seqera/tower/cli/commands/datasets/ViewCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/datasets/ViewCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.datasets; diff --git a/src/main/java/io/seqera/tower/cli/commands/datasets/versions/VersionsCmd.java b/src/main/java/io/seqera/tower/cli/commands/datasets/versions/VersionsCmd.java index ce631648e..6530e64da 100644 --- a/src/main/java/io/seqera/tower/cli/commands/datasets/versions/VersionsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/datasets/versions/VersionsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.datasets.versions; diff --git a/src/main/java/io/seqera/tower/cli/commands/enums/OutputType.java b/src/main/java/io/seqera/tower/cli/commands/enums/OutputType.java index f9208c384..80e5ed8c4 100644 --- a/src/main/java/io/seqera/tower/cli/commands/enums/OutputType.java +++ b/src/main/java/io/seqera/tower/cli/commands/enums/OutputType.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/main/java/io/seqera/tower/cli/commands/global/OrgAndWorkspace.java b/src/main/java/io/seqera/tower/cli/commands/global/OrgAndWorkspace.java index 4d2f710fc..ad911ce74 100644 --- a/src/main/java/io/seqera/tower/cli/commands/global/OrgAndWorkspace.java +++ b/src/main/java/io/seqera/tower/cli/commands/global/OrgAndWorkspace.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.global; diff --git a/src/main/java/io/seqera/tower/cli/commands/global/OrganizationOption.java b/src/main/java/io/seqera/tower/cli/commands/global/OrganizationOption.java index 61a4e9abf..107b8f94f 100644 --- a/src/main/java/io/seqera/tower/cli/commands/global/OrganizationOption.java +++ b/src/main/java/io/seqera/tower/cli/commands/global/OrganizationOption.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.global; diff --git a/src/main/java/io/seqera/tower/cli/commands/global/PaginationOptions.java b/src/main/java/io/seqera/tower/cli/commands/global/PaginationOptions.java index bb45ecd11..7633d50d2 100644 --- a/src/main/java/io/seqera/tower/cli/commands/global/PaginationOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/global/PaginationOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.global; diff --git a/src/main/java/io/seqera/tower/cli/commands/global/ShowLabelsOption.java b/src/main/java/io/seqera/tower/cli/commands/global/ShowLabelsOption.java index 44e4cd5a8..f860f6f42 100644 --- a/src/main/java/io/seqera/tower/cli/commands/global/ShowLabelsOption.java +++ b/src/main/java/io/seqera/tower/cli/commands/global/ShowLabelsOption.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.global; diff --git a/src/main/java/io/seqera/tower/cli/commands/global/WorkspaceOptionalOptions.java b/src/main/java/io/seqera/tower/cli/commands/global/WorkspaceOptionalOptions.java index f122dc261..09d843022 100644 --- a/src/main/java/io/seqera/tower/cli/commands/global/WorkspaceOptionalOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/global/WorkspaceOptionalOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.global; diff --git a/src/main/java/io/seqera/tower/cli/commands/global/WorkspaceRequiredOptions.java b/src/main/java/io/seqera/tower/cli/commands/global/WorkspaceRequiredOptions.java index 8a2009fd3..6b19611b5 100644 --- a/src/main/java/io/seqera/tower/cli/commands/global/WorkspaceRequiredOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/global/WorkspaceRequiredOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.global; diff --git a/src/main/java/io/seqera/tower/cli/commands/labels/AbstractLabelsCmd.java b/src/main/java/io/seqera/tower/cli/commands/labels/AbstractLabelsCmd.java index 550760f6e..f9f307f5b 100644 --- a/src/main/java/io/seqera/tower/cli/commands/labels/AbstractLabelsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/labels/AbstractLabelsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.labels; diff --git a/src/main/java/io/seqera/tower/cli/commands/labels/AddLabelsCmd.java b/src/main/java/io/seqera/tower/cli/commands/labels/AddLabelsCmd.java index ea7e7f286..340d4aabf 100644 --- a/src/main/java/io/seqera/tower/cli/commands/labels/AddLabelsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/labels/AddLabelsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.labels; diff --git a/src/main/java/io/seqera/tower/cli/commands/labels/BaseLabelsManager.java b/src/main/java/io/seqera/tower/cli/commands/labels/BaseLabelsManager.java index 484e0c829..3990f125e 100644 --- a/src/main/java/io/seqera/tower/cli/commands/labels/BaseLabelsManager.java +++ b/src/main/java/io/seqera/tower/cli/commands/labels/BaseLabelsManager.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.labels; diff --git a/src/main/java/io/seqera/tower/cli/commands/labels/DeleteLabelsCmd.java b/src/main/java/io/seqera/tower/cli/commands/labels/DeleteLabelsCmd.java index 8f53d8b40..3875801c9 100644 --- a/src/main/java/io/seqera/tower/cli/commands/labels/DeleteLabelsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/labels/DeleteLabelsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.labels; diff --git a/src/main/java/io/seqera/tower/cli/commands/labels/Label.java b/src/main/java/io/seqera/tower/cli/commands/labels/Label.java index 32925b40d..d7fafe24e 100644 --- a/src/main/java/io/seqera/tower/cli/commands/labels/Label.java +++ b/src/main/java/io/seqera/tower/cli/commands/labels/Label.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.labels; diff --git a/src/main/java/io/seqera/tower/cli/commands/labels/LabelsCmd.java b/src/main/java/io/seqera/tower/cli/commands/labels/LabelsCmd.java index 460598f34..5c422061e 100644 --- a/src/main/java/io/seqera/tower/cli/commands/labels/LabelsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/labels/LabelsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.labels; diff --git a/src/main/java/io/seqera/tower/cli/commands/labels/LabelsFinder.java b/src/main/java/io/seqera/tower/cli/commands/labels/LabelsFinder.java index ed62e6f2c..6cce9031d 100644 --- a/src/main/java/io/seqera/tower/cli/commands/labels/LabelsFinder.java +++ b/src/main/java/io/seqera/tower/cli/commands/labels/LabelsFinder.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.labels; diff --git a/src/main/java/io/seqera/tower/cli/commands/labels/LabelsOptionalOptions.java b/src/main/java/io/seqera/tower/cli/commands/labels/LabelsOptionalOptions.java index d8a099fd0..3a2ea6529 100644 --- a/src/main/java/io/seqera/tower/cli/commands/labels/LabelsOptionalOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/labels/LabelsOptionalOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.labels; diff --git a/src/main/java/io/seqera/tower/cli/commands/labels/LabelsSubcmdOptions.java b/src/main/java/io/seqera/tower/cli/commands/labels/LabelsSubcmdOptions.java index 858f27db1..0a2aead4e 100644 --- a/src/main/java/io/seqera/tower/cli/commands/labels/LabelsSubcmdOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/labels/LabelsSubcmdOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.labels; diff --git a/src/main/java/io/seqera/tower/cli/commands/labels/ListLabelsCmd.java b/src/main/java/io/seqera/tower/cli/commands/labels/ListLabelsCmd.java index deaabb215..72f2c78b2 100644 --- a/src/main/java/io/seqera/tower/cli/commands/labels/ListLabelsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/labels/ListLabelsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.labels; diff --git a/src/main/java/io/seqera/tower/cli/commands/labels/UpdateLabelsCmd.java b/src/main/java/io/seqera/tower/cli/commands/labels/UpdateLabelsCmd.java index e83e5d725..0e68f7a17 100644 --- a/src/main/java/io/seqera/tower/cli/commands/labels/UpdateLabelsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/labels/UpdateLabelsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.labels; diff --git a/src/main/java/io/seqera/tower/cli/commands/members/AbstractMembersClass.java b/src/main/java/io/seqera/tower/cli/commands/members/AbstractMembersClass.java index fef9443d5..9279f77c7 100644 --- a/src/main/java/io/seqera/tower/cli/commands/members/AbstractMembersClass.java +++ b/src/main/java/io/seqera/tower/cli/commands/members/AbstractMembersClass.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.members; diff --git a/src/main/java/io/seqera/tower/cli/commands/members/AddCmd.java b/src/main/java/io/seqera/tower/cli/commands/members/AddCmd.java index cd00eb4b8..6fc00c472 100644 --- a/src/main/java/io/seqera/tower/cli/commands/members/AddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/members/AddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.members; diff --git a/src/main/java/io/seqera/tower/cli/commands/members/DeleteCmd.java b/src/main/java/io/seqera/tower/cli/commands/members/DeleteCmd.java index 4e5b5ade6..9443de15a 100644 --- a/src/main/java/io/seqera/tower/cli/commands/members/DeleteCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/members/DeleteCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.members; diff --git a/src/main/java/io/seqera/tower/cli/commands/members/LeaveCmd.java b/src/main/java/io/seqera/tower/cli/commands/members/LeaveCmd.java index bee2d3c37..2740d10e0 100644 --- a/src/main/java/io/seqera/tower/cli/commands/members/LeaveCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/members/LeaveCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.members; diff --git a/src/main/java/io/seqera/tower/cli/commands/members/ListCmd.java b/src/main/java/io/seqera/tower/cli/commands/members/ListCmd.java index 98b349aff..f26633037 100644 --- a/src/main/java/io/seqera/tower/cli/commands/members/ListCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/members/ListCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.members; diff --git a/src/main/java/io/seqera/tower/cli/commands/members/UpdateCmd.java b/src/main/java/io/seqera/tower/cli/commands/members/UpdateCmd.java index 45255b022..7d425ff42 100644 --- a/src/main/java/io/seqera/tower/cli/commands/members/UpdateCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/members/UpdateCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.members; diff --git a/src/main/java/io/seqera/tower/cli/commands/organizations/AbstractOrganizationsCmd.java b/src/main/java/io/seqera/tower/cli/commands/organizations/AbstractOrganizationsCmd.java index ea6c2cfd1..1c5df46b8 100644 --- a/src/main/java/io/seqera/tower/cli/commands/organizations/AbstractOrganizationsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/organizations/AbstractOrganizationsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.organizations; diff --git a/src/main/java/io/seqera/tower/cli/commands/organizations/AddCmd.java b/src/main/java/io/seqera/tower/cli/commands/organizations/AddCmd.java index 885444176..4a514d76f 100644 --- a/src/main/java/io/seqera/tower/cli/commands/organizations/AddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/organizations/AddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.organizations; diff --git a/src/main/java/io/seqera/tower/cli/commands/organizations/DeleteCmd.java b/src/main/java/io/seqera/tower/cli/commands/organizations/DeleteCmd.java index 39ee1ff97..d2978322e 100644 --- a/src/main/java/io/seqera/tower/cli/commands/organizations/DeleteCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/organizations/DeleteCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.organizations; diff --git a/src/main/java/io/seqera/tower/cli/commands/organizations/ListCmd.java b/src/main/java/io/seqera/tower/cli/commands/organizations/ListCmd.java index 8e50d15c8..5b188dbc1 100644 --- a/src/main/java/io/seqera/tower/cli/commands/organizations/ListCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/organizations/ListCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.organizations; diff --git a/src/main/java/io/seqera/tower/cli/commands/organizations/OrganizationRefOptions.java b/src/main/java/io/seqera/tower/cli/commands/organizations/OrganizationRefOptions.java index 7611981cc..080c0ffa5 100644 --- a/src/main/java/io/seqera/tower/cli/commands/organizations/OrganizationRefOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/organizations/OrganizationRefOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.organizations; diff --git a/src/main/java/io/seqera/tower/cli/commands/organizations/OrganizationsOptions.java b/src/main/java/io/seqera/tower/cli/commands/organizations/OrganizationsOptions.java index 4d4124f6a..64690731f 100644 --- a/src/main/java/io/seqera/tower/cli/commands/organizations/OrganizationsOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/organizations/OrganizationsOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.organizations; diff --git a/src/main/java/io/seqera/tower/cli/commands/organizations/UpdateCmd.java b/src/main/java/io/seqera/tower/cli/commands/organizations/UpdateCmd.java index 734a848d3..e9e0712ac 100644 --- a/src/main/java/io/seqera/tower/cli/commands/organizations/UpdateCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/organizations/UpdateCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.organizations; diff --git a/src/main/java/io/seqera/tower/cli/commands/organizations/ViewCmd.java b/src/main/java/io/seqera/tower/cli/commands/organizations/ViewCmd.java index 46676944a..ecafa2be6 100644 --- a/src/main/java/io/seqera/tower/cli/commands/organizations/ViewCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/organizations/ViewCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.organizations; diff --git a/src/main/java/io/seqera/tower/cli/commands/participants/AbstractParticipantsCmd.java b/src/main/java/io/seqera/tower/cli/commands/participants/AbstractParticipantsCmd.java index 400bb4477..02750192a 100644 --- a/src/main/java/io/seqera/tower/cli/commands/participants/AbstractParticipantsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/participants/AbstractParticipantsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.participants; diff --git a/src/main/java/io/seqera/tower/cli/commands/participants/AddCmd.java b/src/main/java/io/seqera/tower/cli/commands/participants/AddCmd.java index 54184e05f..7a79971f9 100644 --- a/src/main/java/io/seqera/tower/cli/commands/participants/AddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/participants/AddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.participants; diff --git a/src/main/java/io/seqera/tower/cli/commands/participants/DeleteCmd.java b/src/main/java/io/seqera/tower/cli/commands/participants/DeleteCmd.java index 6e0a84365..b16584158 100644 --- a/src/main/java/io/seqera/tower/cli/commands/participants/DeleteCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/participants/DeleteCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.participants; diff --git a/src/main/java/io/seqera/tower/cli/commands/participants/LeaveCmd.java b/src/main/java/io/seqera/tower/cli/commands/participants/LeaveCmd.java index 3996ef92e..3c6dcf5e0 100644 --- a/src/main/java/io/seqera/tower/cli/commands/participants/LeaveCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/participants/LeaveCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.participants; diff --git a/src/main/java/io/seqera/tower/cli/commands/participants/ListCmd.java b/src/main/java/io/seqera/tower/cli/commands/participants/ListCmd.java index 6fac58789..ed605e932 100644 --- a/src/main/java/io/seqera/tower/cli/commands/participants/ListCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/participants/ListCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.participants; diff --git a/src/main/java/io/seqera/tower/cli/commands/participants/UpdateCmd.java b/src/main/java/io/seqera/tower/cli/commands/participants/UpdateCmd.java index ebe0438f9..abe922e3a 100644 --- a/src/main/java/io/seqera/tower/cli/commands/participants/UpdateCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/participants/UpdateCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.participants; diff --git a/src/main/java/io/seqera/tower/cli/commands/pipelines/AbstractPipelinesCmd.java b/src/main/java/io/seqera/tower/cli/commands/pipelines/AbstractPipelinesCmd.java index 14679ae76..4c0595899 100644 --- a/src/main/java/io/seqera/tower/cli/commands/pipelines/AbstractPipelinesCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/pipelines/AbstractPipelinesCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/commands/pipelines/AddCmd.java b/src/main/java/io/seqera/tower/cli/commands/pipelines/AddCmd.java index 438f953de..b64127709 100644 --- a/src/main/java/io/seqera/tower/cli/commands/pipelines/AddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/pipelines/AddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/commands/pipelines/DeleteCmd.java b/src/main/java/io/seqera/tower/cli/commands/pipelines/DeleteCmd.java index 3af21a292..14fce577a 100644 --- a/src/main/java/io/seqera/tower/cli/commands/pipelines/DeleteCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/pipelines/DeleteCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/commands/pipelines/ExportCmd.java b/src/main/java/io/seqera/tower/cli/commands/pipelines/ExportCmd.java index c53d6095a..51a426615 100644 --- a/src/main/java/io/seqera/tower/cli/commands/pipelines/ExportCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/pipelines/ExportCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/commands/pipelines/ImportCmd.java b/src/main/java/io/seqera/tower/cli/commands/pipelines/ImportCmd.java index b73961d60..67fb615f5 100644 --- a/src/main/java/io/seqera/tower/cli/commands/pipelines/ImportCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/pipelines/ImportCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/commands/pipelines/LabelsCmd.java b/src/main/java/io/seqera/tower/cli/commands/pipelines/LabelsCmd.java index beb2d9c5b..5fead9432 100644 --- a/src/main/java/io/seqera/tower/cli/commands/pipelines/LabelsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/pipelines/LabelsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/commands/pipelines/LaunchOptions.java b/src/main/java/io/seqera/tower/cli/commands/pipelines/LaunchOptions.java index ed00e1ea2..53891eba5 100644 --- a/src/main/java/io/seqera/tower/cli/commands/pipelines/LaunchOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/pipelines/LaunchOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/commands/pipelines/ListCmd.java b/src/main/java/io/seqera/tower/cli/commands/pipelines/ListCmd.java index 8ac6a48e6..227a830c6 100644 --- a/src/main/java/io/seqera/tower/cli/commands/pipelines/ListCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/pipelines/ListCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/commands/pipelines/PipelineRefOptions.java b/src/main/java/io/seqera/tower/cli/commands/pipelines/PipelineRefOptions.java index b47d6536e..960eaf29d 100644 --- a/src/main/java/io/seqera/tower/cli/commands/pipelines/PipelineRefOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/pipelines/PipelineRefOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/commands/pipelines/PipelineVisibility.java b/src/main/java/io/seqera/tower/cli/commands/pipelines/PipelineVisibility.java index 3edd2197b..95956cbea 100644 --- a/src/main/java/io/seqera/tower/cli/commands/pipelines/PipelineVisibility.java +++ b/src/main/java/io/seqera/tower/cli/commands/pipelines/PipelineVisibility.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/commands/pipelines/PipelinesLabelsManager.java b/src/main/java/io/seqera/tower/cli/commands/pipelines/PipelinesLabelsManager.java index af90ca923..6f4a922b1 100644 --- a/src/main/java/io/seqera/tower/cli/commands/pipelines/PipelinesLabelsManager.java +++ b/src/main/java/io/seqera/tower/cli/commands/pipelines/PipelinesLabelsManager.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/commands/pipelines/UpdateCmd.java b/src/main/java/io/seqera/tower/cli/commands/pipelines/UpdateCmd.java index b3ee09f77..26612a0c5 100644 --- a/src/main/java/io/seqera/tower/cli/commands/pipelines/UpdateCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/pipelines/UpdateCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/commands/pipelines/ViewCmd.java b/src/main/java/io/seqera/tower/cli/commands/pipelines/ViewCmd.java index da8a4a27e..314cc0f39 100644 --- a/src/main/java/io/seqera/tower/cli/commands/pipelines/ViewCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/pipelines/ViewCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/commands/pipelineschemas/AbstractPipelineSchemasCmd.java b/src/main/java/io/seqera/tower/cli/commands/pipelineschemas/AbstractPipelineSchemasCmd.java index 4a7804a7a..5a9061c1f 100644 --- a/src/main/java/io/seqera/tower/cli/commands/pipelineschemas/AbstractPipelineSchemasCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/pipelineschemas/AbstractPipelineSchemasCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.pipelineschemas; diff --git a/src/main/java/io/seqera/tower/cli/commands/pipelineschemas/AddCmd.java b/src/main/java/io/seqera/tower/cli/commands/pipelineschemas/AddCmd.java index 6632c3f9f..5a974b831 100644 --- a/src/main/java/io/seqera/tower/cli/commands/pipelineschemas/AddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/pipelineschemas/AddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.pipelineschemas; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/AbstractRunsCmd.java b/src/main/java/io/seqera/tower/cli/commands/runs/AbstractRunsCmd.java index 93c52a214..751a4c937 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/AbstractRunsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/AbstractRunsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/CancelCmd.java b/src/main/java/io/seqera/tower/cli/commands/runs/CancelCmd.java index 3b8c6cf1b..4f584442e 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/CancelCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/CancelCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/DeleteCmd.java b/src/main/java/io/seqera/tower/cli/commands/runs/DeleteCmd.java index 3415a814a..ed364c657 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/DeleteCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/DeleteCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/DumpCmd.java b/src/main/java/io/seqera/tower/cli/commands/runs/DumpCmd.java index 0e4ab6949..e3da17862 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/DumpCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/DumpCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/LabelsCmd.java b/src/main/java/io/seqera/tower/cli/commands/runs/LabelsCmd.java index c7a6419c5..c9a0d5bc3 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/LabelsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/LabelsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/ListCmd.java b/src/main/java/io/seqera/tower/cli/commands/runs/ListCmd.java index 095f1e7c6..f864f490f 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/ListCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/ListCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/RelaunchCmd.java b/src/main/java/io/seqera/tower/cli/commands/runs/RelaunchCmd.java index afbe06abd..59a501b1c 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/RelaunchCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/RelaunchCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/RunViewOptions.java b/src/main/java/io/seqera/tower/cli/commands/runs/RunViewOptions.java index 42b72f21b..bb3cab0f5 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/RunViewOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/RunViewOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/RunsLabelsManager.java b/src/main/java/io/seqera/tower/cli/commands/runs/RunsLabelsManager.java index 97e8ad34a..c7c0618f8 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/RunsLabelsManager.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/RunsLabelsManager.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/ViewCmd.java b/src/main/java/io/seqera/tower/cli/commands/runs/ViewCmd.java index e5c51b733..becede540 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/ViewCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/ViewCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/download/DownloadCmd.java b/src/main/java/io/seqera/tower/cli/commands/runs/download/DownloadCmd.java index 3fba126e3..61bfb3284 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/download/DownloadCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/download/DownloadCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs.download; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/download/enums/RunDownloadFileType.java b/src/main/java/io/seqera/tower/cli/commands/runs/download/enums/RunDownloadFileType.java index 7d752ba2d..93060136e 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/download/enums/RunDownloadFileType.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/download/enums/RunDownloadFileType.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs.download.enums; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/metrics/MetricsCmd.java b/src/main/java/io/seqera/tower/cli/commands/runs/metrics/MetricsCmd.java index b53b84681..e14460d74 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/metrics/MetricsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/metrics/MetricsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs.metrics; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/metrics/enums/MetricColumn.java b/src/main/java/io/seqera/tower/cli/commands/runs/metrics/enums/MetricColumn.java index 2969af9b0..1af0524d5 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/metrics/enums/MetricColumn.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/metrics/enums/MetricColumn.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs.metrics.enums; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/metrics/enums/MetricPreviewFormat.java b/src/main/java/io/seqera/tower/cli/commands/runs/metrics/enums/MetricPreviewFormat.java index f2a889fbb..940dd301c 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/metrics/enums/MetricPreviewFormat.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/metrics/enums/MetricPreviewFormat.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs.metrics.enums; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/metrics/enums/MetricType.java b/src/main/java/io/seqera/tower/cli/commands/runs/metrics/enums/MetricType.java index d7ce81815..b2d17cd02 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/metrics/enums/MetricType.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/metrics/enums/MetricType.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs.metrics.enums; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/metrics/model/Metric.java b/src/main/java/io/seqera/tower/cli/commands/runs/metrics/model/Metric.java index 2f7deb371..9c59f5c75 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/metrics/model/Metric.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/metrics/model/Metric.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs.metrics.model; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/tasks/TaskCmd.java b/src/main/java/io/seqera/tower/cli/commands/runs/tasks/TaskCmd.java index da1931100..78035aa01 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/tasks/TaskCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/tasks/TaskCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs.tasks; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/tasks/TasksCmd.java b/src/main/java/io/seqera/tower/cli/commands/runs/tasks/TasksCmd.java index b96a00e89..e966804b6 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/tasks/TasksCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/tasks/TasksCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs.tasks; diff --git a/src/main/java/io/seqera/tower/cli/commands/runs/tasks/enums/TaskColumn.java b/src/main/java/io/seqera/tower/cli/commands/runs/tasks/enums/TaskColumn.java index 2557d897d..180f63542 100644 --- a/src/main/java/io/seqera/tower/cli/commands/runs/tasks/enums/TaskColumn.java +++ b/src/main/java/io/seqera/tower/cli/commands/runs/tasks/enums/TaskColumn.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.runs.tasks.enums; diff --git a/src/main/java/io/seqera/tower/cli/commands/secrets/AbstractSecretsCmd.java b/src/main/java/io/seqera/tower/cli/commands/secrets/AbstractSecretsCmd.java index 69d8470ae..62a4a83aa 100644 --- a/src/main/java/io/seqera/tower/cli/commands/secrets/AbstractSecretsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/secrets/AbstractSecretsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.secrets; diff --git a/src/main/java/io/seqera/tower/cli/commands/secrets/AddCmd.java b/src/main/java/io/seqera/tower/cli/commands/secrets/AddCmd.java index 2f0c28a0f..e8dcfb209 100644 --- a/src/main/java/io/seqera/tower/cli/commands/secrets/AddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/secrets/AddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.secrets; diff --git a/src/main/java/io/seqera/tower/cli/commands/secrets/DeleteCmd.java b/src/main/java/io/seqera/tower/cli/commands/secrets/DeleteCmd.java index a86116048..1581a70bb 100644 --- a/src/main/java/io/seqera/tower/cli/commands/secrets/DeleteCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/secrets/DeleteCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.secrets; diff --git a/src/main/java/io/seqera/tower/cli/commands/secrets/ListCmd.java b/src/main/java/io/seqera/tower/cli/commands/secrets/ListCmd.java index c7c610f47..045a5671b 100644 --- a/src/main/java/io/seqera/tower/cli/commands/secrets/ListCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/secrets/ListCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.secrets; diff --git a/src/main/java/io/seqera/tower/cli/commands/secrets/SecretRefOptions.java b/src/main/java/io/seqera/tower/cli/commands/secrets/SecretRefOptions.java index 4b4fd4b47..5be2e8870 100644 --- a/src/main/java/io/seqera/tower/cli/commands/secrets/SecretRefOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/secrets/SecretRefOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.secrets; diff --git a/src/main/java/io/seqera/tower/cli/commands/secrets/UpdateCmd.java b/src/main/java/io/seqera/tower/cli/commands/secrets/UpdateCmd.java index dd2ee6894..2c4bdcfa1 100644 --- a/src/main/java/io/seqera/tower/cli/commands/secrets/UpdateCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/secrets/UpdateCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.secrets; diff --git a/src/main/java/io/seqera/tower/cli/commands/secrets/ViewCmd.java b/src/main/java/io/seqera/tower/cli/commands/secrets/ViewCmd.java index f7a5ba9af..c58efac58 100644 --- a/src/main/java/io/seqera/tower/cli/commands/secrets/ViewCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/secrets/ViewCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.secrets; diff --git a/src/main/java/io/seqera/tower/cli/commands/studios/AbstractStudiosCmd.java b/src/main/java/io/seqera/tower/cli/commands/studios/AbstractStudiosCmd.java index e61fc7d40..73cfe3626 100644 --- a/src/main/java/io/seqera/tower/cli/commands/studios/AbstractStudiosCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/studios/AbstractStudiosCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.studios; diff --git a/src/main/java/io/seqera/tower/cli/commands/studios/AddAsNewCmd.java b/src/main/java/io/seqera/tower/cli/commands/studios/AddAsNewCmd.java index 5e96737d4..67bed037b 100644 --- a/src/main/java/io/seqera/tower/cli/commands/studios/AddAsNewCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/studios/AddAsNewCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.studios; diff --git a/src/main/java/io/seqera/tower/cli/commands/studios/AddCmd.java b/src/main/java/io/seqera/tower/cli/commands/studios/AddCmd.java index 232cfeee3..6bca0e319 100644 --- a/src/main/java/io/seqera/tower/cli/commands/studios/AddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/studios/AddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.studios; diff --git a/src/main/java/io/seqera/tower/cli/commands/studios/CheckpointsCmd.java b/src/main/java/io/seqera/tower/cli/commands/studios/CheckpointsCmd.java index c2c1cf8d7..a4292198c 100644 --- a/src/main/java/io/seqera/tower/cli/commands/studios/CheckpointsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/studios/CheckpointsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.studios; diff --git a/src/main/java/io/seqera/tower/cli/commands/studios/DataLinkRefOptions.java b/src/main/java/io/seqera/tower/cli/commands/studios/DataLinkRefOptions.java index bc9c4d770..af12b5b0e 100644 --- a/src/main/java/io/seqera/tower/cli/commands/studios/DataLinkRefOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/studios/DataLinkRefOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.studios; diff --git a/src/main/java/io/seqera/tower/cli/commands/studios/DeleteCmd.java b/src/main/java/io/seqera/tower/cli/commands/studios/DeleteCmd.java index cefd83944..8cb535ead 100644 --- a/src/main/java/io/seqera/tower/cli/commands/studios/DeleteCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/studios/DeleteCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.studios; diff --git a/src/main/java/io/seqera/tower/cli/commands/studios/ListCmd.java b/src/main/java/io/seqera/tower/cli/commands/studios/ListCmd.java index 33b0d707d..af698158f 100644 --- a/src/main/java/io/seqera/tower/cli/commands/studios/ListCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/studios/ListCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.studios; diff --git a/src/main/java/io/seqera/tower/cli/commands/studios/ParentStudioRefOptions.java b/src/main/java/io/seqera/tower/cli/commands/studios/ParentStudioRefOptions.java index 4c3bc39b7..c60ca2eb8 100644 --- a/src/main/java/io/seqera/tower/cli/commands/studios/ParentStudioRefOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/studios/ParentStudioRefOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.studios; diff --git a/src/main/java/io/seqera/tower/cli/commands/studios/StartCmd.java b/src/main/java/io/seqera/tower/cli/commands/studios/StartCmd.java index 1c8ea7f6e..e45f278c0 100644 --- a/src/main/java/io/seqera/tower/cli/commands/studios/StartCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/studios/StartCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.studios; diff --git a/src/main/java/io/seqera/tower/cli/commands/studios/StopCmd.java b/src/main/java/io/seqera/tower/cli/commands/studios/StopCmd.java index c779be7f2..2bed95d75 100644 --- a/src/main/java/io/seqera/tower/cli/commands/studios/StopCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/studios/StopCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.studios; diff --git a/src/main/java/io/seqera/tower/cli/commands/studios/StudioConfigurationOptions.java b/src/main/java/io/seqera/tower/cli/commands/studios/StudioConfigurationOptions.java index a421bf3b9..73e2d4acb 100644 --- a/src/main/java/io/seqera/tower/cli/commands/studios/StudioConfigurationOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/studios/StudioConfigurationOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.studios; diff --git a/src/main/java/io/seqera/tower/cli/commands/studios/StudioRefOptions.java b/src/main/java/io/seqera/tower/cli/commands/studios/StudioRefOptions.java index a71b151fe..a2a3ecd87 100644 --- a/src/main/java/io/seqera/tower/cli/commands/studios/StudioRefOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/studios/StudioRefOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.studios; diff --git a/src/main/java/io/seqera/tower/cli/commands/studios/StudioTemplateOptions.java b/src/main/java/io/seqera/tower/cli/commands/studios/StudioTemplateOptions.java index 6a0de1144..ddbd12abd 100644 --- a/src/main/java/io/seqera/tower/cli/commands/studios/StudioTemplateOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/studios/StudioTemplateOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.studios; diff --git a/src/main/java/io/seqera/tower/cli/commands/studios/TemplatesCmd.java b/src/main/java/io/seqera/tower/cli/commands/studios/TemplatesCmd.java index 9a74057a5..ba4305a64 100644 --- a/src/main/java/io/seqera/tower/cli/commands/studios/TemplatesCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/studios/TemplatesCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.studios; diff --git a/src/main/java/io/seqera/tower/cli/commands/studios/ViewCmd.java b/src/main/java/io/seqera/tower/cli/commands/studios/ViewCmd.java index 74d87c54b..8b637c707 100644 --- a/src/main/java/io/seqera/tower/cli/commands/studios/ViewCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/studios/ViewCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.studios; diff --git a/src/main/java/io/seqera/tower/cli/commands/teams/AbstractTeamsCmd.java b/src/main/java/io/seqera/tower/cli/commands/teams/AbstractTeamsCmd.java index f61889fae..b736603df 100644 --- a/src/main/java/io/seqera/tower/cli/commands/teams/AbstractTeamsCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/teams/AbstractTeamsCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.teams; diff --git a/src/main/java/io/seqera/tower/cli/commands/teams/AddCmd.java b/src/main/java/io/seqera/tower/cli/commands/teams/AddCmd.java index 9dd85d631..b45e373ea 100644 --- a/src/main/java/io/seqera/tower/cli/commands/teams/AddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/teams/AddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.teams; diff --git a/src/main/java/io/seqera/tower/cli/commands/teams/DeleteCmd.java b/src/main/java/io/seqera/tower/cli/commands/teams/DeleteCmd.java index 501850ef1..eb240897d 100644 --- a/src/main/java/io/seqera/tower/cli/commands/teams/DeleteCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/teams/DeleteCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.teams; diff --git a/src/main/java/io/seqera/tower/cli/commands/teams/ListCmd.java b/src/main/java/io/seqera/tower/cli/commands/teams/ListCmd.java index 53a92ba4e..90dc4e1ef 100644 --- a/src/main/java/io/seqera/tower/cli/commands/teams/ListCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/teams/ListCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.teams; diff --git a/src/main/java/io/seqera/tower/cli/commands/teams/MembersCmd.java b/src/main/java/io/seqera/tower/cli/commands/teams/MembersCmd.java index 5976a713e..1c0c13ff6 100644 --- a/src/main/java/io/seqera/tower/cli/commands/teams/MembersCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/teams/MembersCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.teams; diff --git a/src/main/java/io/seqera/tower/cli/commands/teams/members/AddCmd.java b/src/main/java/io/seqera/tower/cli/commands/teams/members/AddCmd.java index ca0f10431..f9a0389c5 100644 --- a/src/main/java/io/seqera/tower/cli/commands/teams/members/AddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/teams/members/AddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.teams.members; diff --git a/src/main/java/io/seqera/tower/cli/commands/teams/members/DeleteCmd.java b/src/main/java/io/seqera/tower/cli/commands/teams/members/DeleteCmd.java index 79ccae121..e8c55b3e4 100644 --- a/src/main/java/io/seqera/tower/cli/commands/teams/members/DeleteCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/teams/members/DeleteCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.teams.members; diff --git a/src/main/java/io/seqera/tower/cli/commands/workspaces/AbstractWorkspaceCmd.java b/src/main/java/io/seqera/tower/cli/commands/workspaces/AbstractWorkspaceCmd.java index 8bddda242..2a2f21121 100644 --- a/src/main/java/io/seqera/tower/cli/commands/workspaces/AbstractWorkspaceCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/workspaces/AbstractWorkspaceCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.workspaces; diff --git a/src/main/java/io/seqera/tower/cli/commands/workspaces/AddCmd.java b/src/main/java/io/seqera/tower/cli/commands/workspaces/AddCmd.java index f93b3a236..14a8aa168 100644 --- a/src/main/java/io/seqera/tower/cli/commands/workspaces/AddCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/workspaces/AddCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.workspaces; diff --git a/src/main/java/io/seqera/tower/cli/commands/workspaces/DeleteCmd.java b/src/main/java/io/seqera/tower/cli/commands/workspaces/DeleteCmd.java index 5fe2f8b3b..3c7189a19 100644 --- a/src/main/java/io/seqera/tower/cli/commands/workspaces/DeleteCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/workspaces/DeleteCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.workspaces; diff --git a/src/main/java/io/seqera/tower/cli/commands/workspaces/LeaveCmd.java b/src/main/java/io/seqera/tower/cli/commands/workspaces/LeaveCmd.java index eac1b4531..b4b923943 100644 --- a/src/main/java/io/seqera/tower/cli/commands/workspaces/LeaveCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/workspaces/LeaveCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.workspaces; diff --git a/src/main/java/io/seqera/tower/cli/commands/workspaces/ListCmd.java b/src/main/java/io/seqera/tower/cli/commands/workspaces/ListCmd.java index 0d49d976b..39208e826 100644 --- a/src/main/java/io/seqera/tower/cli/commands/workspaces/ListCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/workspaces/ListCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.workspaces; diff --git a/src/main/java/io/seqera/tower/cli/commands/workspaces/UpdateCmd.java b/src/main/java/io/seqera/tower/cli/commands/workspaces/UpdateCmd.java index f2bdd9cf9..a05a16586 100644 --- a/src/main/java/io/seqera/tower/cli/commands/workspaces/UpdateCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/workspaces/UpdateCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.workspaces; diff --git a/src/main/java/io/seqera/tower/cli/commands/workspaces/ViewCmd.java b/src/main/java/io/seqera/tower/cli/commands/workspaces/ViewCmd.java index ea0da6498..52aee7fd2 100644 --- a/src/main/java/io/seqera/tower/cli/commands/workspaces/ViewCmd.java +++ b/src/main/java/io/seqera/tower/cli/commands/workspaces/ViewCmd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.workspaces; diff --git a/src/main/java/io/seqera/tower/cli/commands/workspaces/WorkspaceRefOptions.java b/src/main/java/io/seqera/tower/cli/commands/workspaces/WorkspaceRefOptions.java index 9f877cee3..bc8e12f09 100644 --- a/src/main/java/io/seqera/tower/cli/commands/workspaces/WorkspaceRefOptions.java +++ b/src/main/java/io/seqera/tower/cli/commands/workspaces/WorkspaceRefOptions.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.commands.workspaces; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/ActionNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/ActionNotFoundException.java index 4f5547789..6a8d035d1 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/ActionNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/ActionNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/ApiExceptionMessage.java b/src/main/java/io/seqera/tower/cli/exceptions/ApiExceptionMessage.java index b218fb9af..3e12b0a22 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/ApiExceptionMessage.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/ApiExceptionMessage.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/ComputeEnvNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/ComputeEnvNotFoundException.java index 5923cc06a..e34280028 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/ComputeEnvNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/ComputeEnvNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/CredentialsNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/CredentialsNotFoundException.java index a9abf152a..5a631fa59 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/CredentialsNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/CredentialsNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/DataLinkNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/DataLinkNotFoundException.java index e7851f099..8f37913c4 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/DataLinkNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/DataLinkNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/DatasetNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/DatasetNotFoundException.java index 4ca691cb2..9dbaa6350 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/DatasetNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/DatasetNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/InvalidDataStudioParentCheckpointException.java b/src/main/java/io/seqera/tower/cli/exceptions/InvalidDataStudioParentCheckpointException.java index 5a9557ade..544d1d9df 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/InvalidDataStudioParentCheckpointException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/InvalidDataStudioParentCheckpointException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/InvalidResponseException.java b/src/main/java/io/seqera/tower/cli/exceptions/InvalidResponseException.java index bf10496c9..815931706 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/InvalidResponseException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/InvalidResponseException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/InvalidWorkspaceParameterException.java b/src/main/java/io/seqera/tower/cli/exceptions/InvalidWorkspaceParameterException.java index 243ad60e8..4a2e93814 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/InvalidWorkspaceParameterException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/InvalidWorkspaceParameterException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/LaunchNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/LaunchNotFoundException.java index 0e33d57cc..cf63a3f8f 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/LaunchNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/LaunchNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/MemberNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/MemberNotFoundException.java index c3c4467e3..7bfd8bd9c 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/MemberNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/MemberNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/MembersMultiplicityException.java b/src/main/java/io/seqera/tower/cli/exceptions/MembersMultiplicityException.java index 5987ebd74..34cded3ca 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/MembersMultiplicityException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/MembersMultiplicityException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/MembersNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/MembersNotFoundException.java index 41bb3dc16..9f5866454 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/MembersNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/MembersNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/MissingTowerAccessTokenException.java b/src/main/java/io/seqera/tower/cli/exceptions/MissingTowerAccessTokenException.java index 71e0aa523..6aecc0f91 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/MissingTowerAccessTokenException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/MissingTowerAccessTokenException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/MultipleDataLinksFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/MultipleDataLinksFoundException.java index 5bbd709f1..9b6aed041 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/MultipleDataLinksFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/MultipleDataLinksFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/MultiplePipelinesFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/MultiplePipelinesFoundException.java index a413aaa74..a631a7095 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/MultiplePipelinesFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/MultiplePipelinesFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/NoComputeEnvironmentException.java b/src/main/java/io/seqera/tower/cli/exceptions/NoComputeEnvironmentException.java index e7c287953..a9f3400f6 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/NoComputeEnvironmentException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/NoComputeEnvironmentException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/OrganizationNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/OrganizationNotFoundException.java index 7d304ab35..44c3a1497 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/OrganizationNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/OrganizationNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/ParticipantNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/ParticipantNotFoundException.java index a6c9670d8..d4f9ed744 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/ParticipantNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/ParticipantNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/PipelineNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/PipelineNotFoundException.java index 90a1a8176..6c51fe6ca 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/PipelineNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/PipelineNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/RunNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/RunNotFoundException.java index d4c004f44..de133820c 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/RunNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/RunNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/SecretNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/SecretNotFoundException.java index e32b47fb1..1f476317b 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/SecretNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/SecretNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/ShowUsageException.java b/src/main/java/io/seqera/tower/cli/exceptions/ShowUsageException.java index dca18c851..a877367cc 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/ShowUsageException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/ShowUsageException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/StudioNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/StudioNotFoundException.java index b15f41917..cb0f826d2 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/StudioNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/StudioNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/StudiosCustomTemplateWithCondaException.java b/src/main/java/io/seqera/tower/cli/exceptions/StudiosCustomTemplateWithCondaException.java index a64f755fb..b9ba9b7cb 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/StudiosCustomTemplateWithCondaException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/StudiosCustomTemplateWithCondaException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/StudiosTemplateNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/StudiosTemplateNotFoundException.java index b79e3f762..c7e1949cd 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/StudiosTemplateNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/StudiosTemplateNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/TeamNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/TeamNotFoundException.java index 76656560a..d1d6a7485 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/TeamNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/TeamNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/TowerException.java b/src/main/java/io/seqera/tower/cli/exceptions/TowerException.java index 9dd4b9ec7..649e66642 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/TowerException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/TowerException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/TowerRuntimeException.java b/src/main/java/io/seqera/tower/cli/exceptions/TowerRuntimeException.java index 03834222b..32b1dd370 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/TowerRuntimeException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/TowerRuntimeException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/UserOrganizationsNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/UserOrganizationsNotFoundException.java index f4d1019e3..09c1f4a4d 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/UserOrganizationsNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/UserOrganizationsNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/WorkflowProgressNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/WorkflowProgressNotFoundException.java index acec62630..65f3935d7 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/WorkflowProgressNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/WorkflowProgressNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/exceptions/WorkspaceNotFoundException.java b/src/main/java/io/seqera/tower/cli/exceptions/WorkspaceNotFoundException.java index 7ecd80a3b..988ec5601 100644 --- a/src/main/java/io/seqera/tower/cli/exceptions/WorkspaceNotFoundException.java +++ b/src/main/java/io/seqera/tower/cli/exceptions/WorkspaceNotFoundException.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.exceptions; diff --git a/src/main/java/io/seqera/tower/cli/responses/CredentialsAdded.java b/src/main/java/io/seqera/tower/cli/responses/CredentialsAdded.java index 75719cdca..3e055821f 100644 --- a/src/main/java/io/seqera/tower/cli/responses/CredentialsAdded.java +++ b/src/main/java/io/seqera/tower/cli/responses/CredentialsAdded.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses; diff --git a/src/main/java/io/seqera/tower/cli/responses/CredentialsDeleted.java b/src/main/java/io/seqera/tower/cli/responses/CredentialsDeleted.java index f3ce9744c..1e3e39f9f 100644 --- a/src/main/java/io/seqera/tower/cli/responses/CredentialsDeleted.java +++ b/src/main/java/io/seqera/tower/cli/responses/CredentialsDeleted.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses; diff --git a/src/main/java/io/seqera/tower/cli/responses/CredentialsList.java b/src/main/java/io/seqera/tower/cli/responses/CredentialsList.java index 66b5865dd..6e39a5913 100644 --- a/src/main/java/io/seqera/tower/cli/responses/CredentialsList.java +++ b/src/main/java/io/seqera/tower/cli/responses/CredentialsList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses; diff --git a/src/main/java/io/seqera/tower/cli/responses/CredentialsUpdated.java b/src/main/java/io/seqera/tower/cli/responses/CredentialsUpdated.java index 87f8a6435..14fcf2465 100644 --- a/src/main/java/io/seqera/tower/cli/responses/CredentialsUpdated.java +++ b/src/main/java/io/seqera/tower/cli/responses/CredentialsUpdated.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses; diff --git a/src/main/java/io/seqera/tower/cli/responses/InfoResponse.java b/src/main/java/io/seqera/tower/cli/responses/InfoResponse.java index 1884369dc..b229bc228 100644 --- a/src/main/java/io/seqera/tower/cli/responses/InfoResponse.java +++ b/src/main/java/io/seqera/tower/cli/responses/InfoResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses; diff --git a/src/main/java/io/seqera/tower/cli/responses/Response.java b/src/main/java/io/seqera/tower/cli/responses/Response.java index 4487ed7a9..6a2d16969 100644 --- a/src/main/java/io/seqera/tower/cli/responses/Response.java +++ b/src/main/java/io/seqera/tower/cli/responses/Response.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses; diff --git a/src/main/java/io/seqera/tower/cli/responses/actions/ActionAdd.java b/src/main/java/io/seqera/tower/cli/responses/actions/ActionAdd.java index 10baa22a0..a9b040a9a 100644 --- a/src/main/java/io/seqera/tower/cli/responses/actions/ActionAdd.java +++ b/src/main/java/io/seqera/tower/cli/responses/actions/ActionAdd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.actions; diff --git a/src/main/java/io/seqera/tower/cli/responses/actions/ActionUpdate.java b/src/main/java/io/seqera/tower/cli/responses/actions/ActionUpdate.java index 1118eb842..49809f0c7 100644 --- a/src/main/java/io/seqera/tower/cli/responses/actions/ActionUpdate.java +++ b/src/main/java/io/seqera/tower/cli/responses/actions/ActionUpdate.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.actions; diff --git a/src/main/java/io/seqera/tower/cli/responses/actions/ActionsDelete.java b/src/main/java/io/seqera/tower/cli/responses/actions/ActionsDelete.java index 8d25a4485..eb0c70ed2 100644 --- a/src/main/java/io/seqera/tower/cli/responses/actions/ActionsDelete.java +++ b/src/main/java/io/seqera/tower/cli/responses/actions/ActionsDelete.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.actions; diff --git a/src/main/java/io/seqera/tower/cli/responses/actions/ActionsList.java b/src/main/java/io/seqera/tower/cli/responses/actions/ActionsList.java index 4c30586ff..a556359d0 100644 --- a/src/main/java/io/seqera/tower/cli/responses/actions/ActionsList.java +++ b/src/main/java/io/seqera/tower/cli/responses/actions/ActionsList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.actions; diff --git a/src/main/java/io/seqera/tower/cli/responses/actions/ActionsView.java b/src/main/java/io/seqera/tower/cli/responses/actions/ActionsView.java index 0014caf9b..c615dabf0 100644 --- a/src/main/java/io/seqera/tower/cli/responses/actions/ActionsView.java +++ b/src/main/java/io/seqera/tower/cli/responses/actions/ActionsView.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.actions; diff --git a/src/main/java/io/seqera/tower/cli/responses/collaborators/CollaboratorsList.java b/src/main/java/io/seqera/tower/cli/responses/collaborators/CollaboratorsList.java index dd9792927..2f8181594 100644 --- a/src/main/java/io/seqera/tower/cli/responses/collaborators/CollaboratorsList.java +++ b/src/main/java/io/seqera/tower/cli/responses/collaborators/CollaboratorsList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.collaborators; diff --git a/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvAdded.java b/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvAdded.java index 174f53736..6a08ada6f 100644 --- a/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvAdded.java +++ b/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvAdded.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvDeleted.java b/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvDeleted.java index 051b6e43c..fe2e8d109 100644 --- a/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvDeleted.java +++ b/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvDeleted.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvExport.java b/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvExport.java index 2a5ad1629..dc881079a 100644 --- a/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvExport.java +++ b/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvExport.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvList.java b/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvList.java index 448efb9fe..497820fd5 100644 --- a/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvList.java +++ b/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvUpdated.java b/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvUpdated.java index 45e215e0a..d59def134 100644 --- a/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvUpdated.java +++ b/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvUpdated.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvView.java b/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvView.java index 799a6dbc7..f3a5e4d9f 100644 --- a/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvView.java +++ b/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvView.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvsPrimaryGet.java b/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvsPrimaryGet.java index 45c32661e..f7d3105ff 100644 --- a/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvsPrimaryGet.java +++ b/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvsPrimaryGet.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvsPrimarySet.java b/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvsPrimarySet.java index bb5dc2856..9155a47a5 100644 --- a/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvsPrimarySet.java +++ b/src/main/java/io/seqera/tower/cli/responses/computeenvs/ComputeEnvsPrimarySet.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.computeenvs; diff --git a/src/main/java/io/seqera/tower/cli/responses/data/DataLinkContentList.java b/src/main/java/io/seqera/tower/cli/responses/data/DataLinkContentList.java index ed86ef614..168375a9a 100644 --- a/src/main/java/io/seqera/tower/cli/responses/data/DataLinkContentList.java +++ b/src/main/java/io/seqera/tower/cli/responses/data/DataLinkContentList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.data; diff --git a/src/main/java/io/seqera/tower/cli/responses/data/DataLinkDeleted.java b/src/main/java/io/seqera/tower/cli/responses/data/DataLinkDeleted.java index 5e97ab370..c8ecac975 100644 --- a/src/main/java/io/seqera/tower/cli/responses/data/DataLinkDeleted.java +++ b/src/main/java/io/seqera/tower/cli/responses/data/DataLinkDeleted.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.data; diff --git a/src/main/java/io/seqera/tower/cli/responses/data/DataLinkFileTransferResult.java b/src/main/java/io/seqera/tower/cli/responses/data/DataLinkFileTransferResult.java index 1515bd496..5d356c335 100644 --- a/src/main/java/io/seqera/tower/cli/responses/data/DataLinkFileTransferResult.java +++ b/src/main/java/io/seqera/tower/cli/responses/data/DataLinkFileTransferResult.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.data; diff --git a/src/main/java/io/seqera/tower/cli/responses/data/DataLinkView.java b/src/main/java/io/seqera/tower/cli/responses/data/DataLinkView.java index 2f2c5f5c4..fd850caaf 100644 --- a/src/main/java/io/seqera/tower/cli/responses/data/DataLinkView.java +++ b/src/main/java/io/seqera/tower/cli/responses/data/DataLinkView.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.data; diff --git a/src/main/java/io/seqera/tower/cli/responses/data/DataLinksList.java b/src/main/java/io/seqera/tower/cli/responses/data/DataLinksList.java index 2b8daab37..3327babb0 100644 --- a/src/main/java/io/seqera/tower/cli/responses/data/DataLinksList.java +++ b/src/main/java/io/seqera/tower/cli/responses/data/DataLinksList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.data; diff --git a/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetCreate.java b/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetCreate.java index c68c18d47..210a0ea4c 100644 --- a/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetCreate.java +++ b/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetCreate.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.datasets; diff --git a/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetDelete.java b/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetDelete.java index 4e64526f4..9ac47cb59 100644 --- a/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetDelete.java +++ b/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetDelete.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.datasets; diff --git a/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetDownload.java b/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetDownload.java index dd132d546..81652612d 100644 --- a/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetDownload.java +++ b/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetDownload.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.datasets; diff --git a/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetList.java b/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetList.java index 20e54d5ea..8702bb91d 100644 --- a/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetList.java +++ b/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.datasets; diff --git a/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetUpdate.java b/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetUpdate.java index d17f94748..5e8405fbc 100644 --- a/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetUpdate.java +++ b/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetUpdate.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.datasets; diff --git a/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetUrl.java b/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetUrl.java index 1a93f8920..5c6af41da 100644 --- a/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetUrl.java +++ b/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetUrl.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.datasets; diff --git a/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetVersionsList.java b/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetVersionsList.java index cd3573270..2b77d8232 100644 --- a/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetVersionsList.java +++ b/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetVersionsList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.datasets; diff --git a/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetView.java b/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetView.java index 590d7f123..c31868859 100644 --- a/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetView.java +++ b/src/main/java/io/seqera/tower/cli/responses/datasets/DatasetView.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.datasets; diff --git a/src/main/java/io/seqera/tower/cli/responses/labels/DeleteLabelsResponse.java b/src/main/java/io/seqera/tower/cli/responses/labels/DeleteLabelsResponse.java index e676350ac..931b7e0d6 100644 --- a/src/main/java/io/seqera/tower/cli/responses/labels/DeleteLabelsResponse.java +++ b/src/main/java/io/seqera/tower/cli/responses/labels/DeleteLabelsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.labels; diff --git a/src/main/java/io/seqera/tower/cli/responses/labels/LabelAdded.java b/src/main/java/io/seqera/tower/cli/responses/labels/LabelAdded.java index 8a6ff3076..7878fc69e 100644 --- a/src/main/java/io/seqera/tower/cli/responses/labels/LabelAdded.java +++ b/src/main/java/io/seqera/tower/cli/responses/labels/LabelAdded.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.labels; diff --git a/src/main/java/io/seqera/tower/cli/responses/labels/LabelUpdated.java b/src/main/java/io/seqera/tower/cli/responses/labels/LabelUpdated.java index bd8ec3cc0..ec1d748ce 100644 --- a/src/main/java/io/seqera/tower/cli/responses/labels/LabelUpdated.java +++ b/src/main/java/io/seqera/tower/cli/responses/labels/LabelUpdated.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.labels; diff --git a/src/main/java/io/seqera/tower/cli/responses/labels/ListLabelsCmdResponse.java b/src/main/java/io/seqera/tower/cli/responses/labels/ListLabelsCmdResponse.java index 930ad84dd..ce4813422 100644 --- a/src/main/java/io/seqera/tower/cli/responses/labels/ListLabelsCmdResponse.java +++ b/src/main/java/io/seqera/tower/cli/responses/labels/ListLabelsCmdResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.labels; diff --git a/src/main/java/io/seqera/tower/cli/responses/labels/ManageLabels.java b/src/main/java/io/seqera/tower/cli/responses/labels/ManageLabels.java index 72d65d061..6b137bd5b 100644 --- a/src/main/java/io/seqera/tower/cli/responses/labels/ManageLabels.java +++ b/src/main/java/io/seqera/tower/cli/responses/labels/ManageLabels.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.labels; diff --git a/src/main/java/io/seqera/tower/cli/responses/members/MembersAdded.java b/src/main/java/io/seqera/tower/cli/responses/members/MembersAdded.java index 70be26814..27cbbd86c 100644 --- a/src/main/java/io/seqera/tower/cli/responses/members/MembersAdded.java +++ b/src/main/java/io/seqera/tower/cli/responses/members/MembersAdded.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.members; diff --git a/src/main/java/io/seqera/tower/cli/responses/members/MembersDeleted.java b/src/main/java/io/seqera/tower/cli/responses/members/MembersDeleted.java index e2a7e369a..68818eea4 100644 --- a/src/main/java/io/seqera/tower/cli/responses/members/MembersDeleted.java +++ b/src/main/java/io/seqera/tower/cli/responses/members/MembersDeleted.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.members; diff --git a/src/main/java/io/seqera/tower/cli/responses/members/MembersLeave.java b/src/main/java/io/seqera/tower/cli/responses/members/MembersLeave.java index 71058b5dc..b745cbddd 100644 --- a/src/main/java/io/seqera/tower/cli/responses/members/MembersLeave.java +++ b/src/main/java/io/seqera/tower/cli/responses/members/MembersLeave.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.members; diff --git a/src/main/java/io/seqera/tower/cli/responses/members/MembersList.java b/src/main/java/io/seqera/tower/cli/responses/members/MembersList.java index a70f803cd..ca48fdaf8 100644 --- a/src/main/java/io/seqera/tower/cli/responses/members/MembersList.java +++ b/src/main/java/io/seqera/tower/cli/responses/members/MembersList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.members; diff --git a/src/main/java/io/seqera/tower/cli/responses/members/MembersUpdate.java b/src/main/java/io/seqera/tower/cli/responses/members/MembersUpdate.java index 3f9479b45..122d2dcff 100644 --- a/src/main/java/io/seqera/tower/cli/responses/members/MembersUpdate.java +++ b/src/main/java/io/seqera/tower/cli/responses/members/MembersUpdate.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.members; diff --git a/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsAdded.java b/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsAdded.java index f13c81183..768f70220 100644 --- a/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsAdded.java +++ b/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsAdded.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.organizations; diff --git a/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsDeleted.java b/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsDeleted.java index 906199975..cb29184b1 100644 --- a/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsDeleted.java +++ b/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsDeleted.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.organizations; diff --git a/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsList.java b/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsList.java index 1744fccec..079100b4d 100644 --- a/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsList.java +++ b/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.organizations; diff --git a/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsUpdated.java b/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsUpdated.java index 05d458f7d..ed93e4dad 100644 --- a/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsUpdated.java +++ b/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsUpdated.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.organizations; diff --git a/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsView.java b/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsView.java index 244a80402..24418293e 100644 --- a/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsView.java +++ b/src/main/java/io/seqera/tower/cli/responses/organizations/OrganizationsView.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.organizations; diff --git a/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantAdded.java b/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantAdded.java index 8e440d0ed..2531256e9 100644 --- a/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantAdded.java +++ b/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantAdded.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.participants; diff --git a/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantDeleted.java b/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantDeleted.java index 260300351..f889397fe 100644 --- a/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantDeleted.java +++ b/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantDeleted.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.participants; diff --git a/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantLeft.java b/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantLeft.java index 8ca7dcc18..6cefe5c11 100644 --- a/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantLeft.java +++ b/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantLeft.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.participants; diff --git a/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantUpdated.java b/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantUpdated.java index 9f8ef4024..483e7acfc 100644 --- a/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantUpdated.java +++ b/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantUpdated.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.participants; diff --git a/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantsList.java b/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantsList.java index 801e1ef2a..fd4edebb9 100644 --- a/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantsList.java +++ b/src/main/java/io/seqera/tower/cli/responses/participants/ParticipantsList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.participants; diff --git a/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesAdded.java b/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesAdded.java index d6949cc51..5dede93b1 100644 --- a/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesAdded.java +++ b/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesAdded.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesDeleted.java b/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesDeleted.java index d78d4bf57..ac7dd8e39 100644 --- a/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesDeleted.java +++ b/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesDeleted.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesExport.java b/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesExport.java index e8b3acb88..6a090bab1 100644 --- a/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesExport.java +++ b/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesExport.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesList.java b/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesList.java index 985304599..b764b2a64 100644 --- a/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesList.java +++ b/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesUpdated.java b/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesUpdated.java index 21a0867af..a560f2543 100644 --- a/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesUpdated.java +++ b/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesUpdated.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesView.java b/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesView.java index 8146736f1..4160a8910 100644 --- a/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesView.java +++ b/src/main/java/io/seqera/tower/cli/responses/pipelines/PipelinesView.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.pipelines; diff --git a/src/main/java/io/seqera/tower/cli/responses/pipelineschemas/PipelineSchemasAdded.java b/src/main/java/io/seqera/tower/cli/responses/pipelineschemas/PipelineSchemasAdded.java index 520e27cf9..918d00e6c 100644 --- a/src/main/java/io/seqera/tower/cli/responses/pipelineschemas/PipelineSchemasAdded.java +++ b/src/main/java/io/seqera/tower/cli/responses/pipelineschemas/PipelineSchemasAdded.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.pipelineschemas; diff --git a/src/main/java/io/seqera/tower/cli/responses/runs/RunCanceled.java b/src/main/java/io/seqera/tower/cli/responses/runs/RunCanceled.java index 8eeaca3c1..74baffbc2 100644 --- a/src/main/java/io/seqera/tower/cli/responses/runs/RunCanceled.java +++ b/src/main/java/io/seqera/tower/cli/responses/runs/RunCanceled.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.runs; diff --git a/src/main/java/io/seqera/tower/cli/responses/runs/RunDeleted.java b/src/main/java/io/seqera/tower/cli/responses/runs/RunDeleted.java index 859b20bb0..7290d9607 100644 --- a/src/main/java/io/seqera/tower/cli/responses/runs/RunDeleted.java +++ b/src/main/java/io/seqera/tower/cli/responses/runs/RunDeleted.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.runs; diff --git a/src/main/java/io/seqera/tower/cli/responses/runs/RunDump.java b/src/main/java/io/seqera/tower/cli/responses/runs/RunDump.java index 57d84500f..f7e5acd25 100644 --- a/src/main/java/io/seqera/tower/cli/responses/runs/RunDump.java +++ b/src/main/java/io/seqera/tower/cli/responses/runs/RunDump.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.runs; diff --git a/src/main/java/io/seqera/tower/cli/responses/runs/RunFileDownloaded.java b/src/main/java/io/seqera/tower/cli/responses/runs/RunFileDownloaded.java index a22b224c7..009680be7 100644 --- a/src/main/java/io/seqera/tower/cli/responses/runs/RunFileDownloaded.java +++ b/src/main/java/io/seqera/tower/cli/responses/runs/RunFileDownloaded.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.runs; diff --git a/src/main/java/io/seqera/tower/cli/responses/runs/RunList.java b/src/main/java/io/seqera/tower/cli/responses/runs/RunList.java index 559f0458f..f60119b36 100644 --- a/src/main/java/io/seqera/tower/cli/responses/runs/RunList.java +++ b/src/main/java/io/seqera/tower/cli/responses/runs/RunList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.runs; diff --git a/src/main/java/io/seqera/tower/cli/responses/runs/RunSubmited.java b/src/main/java/io/seqera/tower/cli/responses/runs/RunSubmited.java index b1101ec0d..f3452bdaa 100644 --- a/src/main/java/io/seqera/tower/cli/responses/runs/RunSubmited.java +++ b/src/main/java/io/seqera/tower/cli/responses/runs/RunSubmited.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.runs; diff --git a/src/main/java/io/seqera/tower/cli/responses/runs/RunView.java b/src/main/java/io/seqera/tower/cli/responses/runs/RunView.java index 2a14f54ad..40d3ce388 100644 --- a/src/main/java/io/seqera/tower/cli/responses/runs/RunView.java +++ b/src/main/java/io/seqera/tower/cli/responses/runs/RunView.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.runs; diff --git a/src/main/java/io/seqera/tower/cli/responses/runs/RunViewMetrics.java b/src/main/java/io/seqera/tower/cli/responses/runs/RunViewMetrics.java index 4576bdc7c..0ca1ce786 100644 --- a/src/main/java/io/seqera/tower/cli/responses/runs/RunViewMetrics.java +++ b/src/main/java/io/seqera/tower/cli/responses/runs/RunViewMetrics.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.runs; diff --git a/src/main/java/io/seqera/tower/cli/responses/runs/tasks/TaskView.java b/src/main/java/io/seqera/tower/cli/responses/runs/tasks/TaskView.java index 1f6ca8eb1..4d4fd0fba 100644 --- a/src/main/java/io/seqera/tower/cli/responses/runs/tasks/TaskView.java +++ b/src/main/java/io/seqera/tower/cli/responses/runs/tasks/TaskView.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.runs.tasks; diff --git a/src/main/java/io/seqera/tower/cli/responses/runs/tasks/TasksView.java b/src/main/java/io/seqera/tower/cli/responses/runs/tasks/TasksView.java index af86e6dd1..4ce1420f0 100644 --- a/src/main/java/io/seqera/tower/cli/responses/runs/tasks/TasksView.java +++ b/src/main/java/io/seqera/tower/cli/responses/runs/tasks/TasksView.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.runs.tasks; diff --git a/src/main/java/io/seqera/tower/cli/responses/runs/utils/MetricFormatMapper.java b/src/main/java/io/seqera/tower/cli/responses/runs/utils/MetricFormatMapper.java index cea20b30f..97db9ad88 100644 --- a/src/main/java/io/seqera/tower/cli/responses/runs/utils/MetricFormatMapper.java +++ b/src/main/java/io/seqera/tower/cli/responses/runs/utils/MetricFormatMapper.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.runs.utils; diff --git a/src/main/java/io/seqera/tower/cli/responses/secrets/SecretAdded.java b/src/main/java/io/seqera/tower/cli/responses/secrets/SecretAdded.java index e1a9aff41..c1f92c686 100644 --- a/src/main/java/io/seqera/tower/cli/responses/secrets/SecretAdded.java +++ b/src/main/java/io/seqera/tower/cli/responses/secrets/SecretAdded.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.secrets; diff --git a/src/main/java/io/seqera/tower/cli/responses/secrets/SecretDeleted.java b/src/main/java/io/seqera/tower/cli/responses/secrets/SecretDeleted.java index f14077711..903ae1d11 100644 --- a/src/main/java/io/seqera/tower/cli/responses/secrets/SecretDeleted.java +++ b/src/main/java/io/seqera/tower/cli/responses/secrets/SecretDeleted.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.secrets; diff --git a/src/main/java/io/seqera/tower/cli/responses/secrets/SecretUpdated.java b/src/main/java/io/seqera/tower/cli/responses/secrets/SecretUpdated.java index 987b30a23..521fdd34a 100644 --- a/src/main/java/io/seqera/tower/cli/responses/secrets/SecretUpdated.java +++ b/src/main/java/io/seqera/tower/cli/responses/secrets/SecretUpdated.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.secrets; diff --git a/src/main/java/io/seqera/tower/cli/responses/secrets/SecretView.java b/src/main/java/io/seqera/tower/cli/responses/secrets/SecretView.java index 0b84b2062..3defc0d53 100644 --- a/src/main/java/io/seqera/tower/cli/responses/secrets/SecretView.java +++ b/src/main/java/io/seqera/tower/cli/responses/secrets/SecretView.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.secrets; diff --git a/src/main/java/io/seqera/tower/cli/responses/secrets/SecretsList.java b/src/main/java/io/seqera/tower/cli/responses/secrets/SecretsList.java index b042aee8b..37203653e 100644 --- a/src/main/java/io/seqera/tower/cli/responses/secrets/SecretsList.java +++ b/src/main/java/io/seqera/tower/cli/responses/secrets/SecretsList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.secrets; diff --git a/src/main/java/io/seqera/tower/cli/responses/studios/StudioCheckpointsList.java b/src/main/java/io/seqera/tower/cli/responses/studios/StudioCheckpointsList.java index de7221f39..dc413c8ff 100644 --- a/src/main/java/io/seqera/tower/cli/responses/studios/StudioCheckpointsList.java +++ b/src/main/java/io/seqera/tower/cli/responses/studios/StudioCheckpointsList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.studios; diff --git a/src/main/java/io/seqera/tower/cli/responses/studios/StudioDeleted.java b/src/main/java/io/seqera/tower/cli/responses/studios/StudioDeleted.java index 65e0c8189..0000010c3 100644 --- a/src/main/java/io/seqera/tower/cli/responses/studios/StudioDeleted.java +++ b/src/main/java/io/seqera/tower/cli/responses/studios/StudioDeleted.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.studios; diff --git a/src/main/java/io/seqera/tower/cli/responses/studios/StudioStartSubmitted.java b/src/main/java/io/seqera/tower/cli/responses/studios/StudioStartSubmitted.java index 24a5a549d..e96e89eec 100644 --- a/src/main/java/io/seqera/tower/cli/responses/studios/StudioStartSubmitted.java +++ b/src/main/java/io/seqera/tower/cli/responses/studios/StudioStartSubmitted.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.studios; diff --git a/src/main/java/io/seqera/tower/cli/responses/studios/StudioStopSubmitted.java b/src/main/java/io/seqera/tower/cli/responses/studios/StudioStopSubmitted.java index b59edaff4..70bfafe74 100644 --- a/src/main/java/io/seqera/tower/cli/responses/studios/StudioStopSubmitted.java +++ b/src/main/java/io/seqera/tower/cli/responses/studios/StudioStopSubmitted.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.studios; diff --git a/src/main/java/io/seqera/tower/cli/responses/studios/StudiosCreated.java b/src/main/java/io/seqera/tower/cli/responses/studios/StudiosCreated.java index ebd0ba70b..c74a53c23 100644 --- a/src/main/java/io/seqera/tower/cli/responses/studios/StudiosCreated.java +++ b/src/main/java/io/seqera/tower/cli/responses/studios/StudiosCreated.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.studios; diff --git a/src/main/java/io/seqera/tower/cli/responses/studios/StudiosList.java b/src/main/java/io/seqera/tower/cli/responses/studios/StudiosList.java index 2dce93556..5b7673ac5 100644 --- a/src/main/java/io/seqera/tower/cli/responses/studios/StudiosList.java +++ b/src/main/java/io/seqera/tower/cli/responses/studios/StudiosList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.studios; diff --git a/src/main/java/io/seqera/tower/cli/responses/studios/StudiosTemplatesList.java b/src/main/java/io/seqera/tower/cli/responses/studios/StudiosTemplatesList.java index 94bb1d5e5..a3cf41e3f 100644 --- a/src/main/java/io/seqera/tower/cli/responses/studios/StudiosTemplatesList.java +++ b/src/main/java/io/seqera/tower/cli/responses/studios/StudiosTemplatesList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.studios; diff --git a/src/main/java/io/seqera/tower/cli/responses/studios/StudiosView.java b/src/main/java/io/seqera/tower/cli/responses/studios/StudiosView.java index f9e44d15e..9bbc53e06 100644 --- a/src/main/java/io/seqera/tower/cli/responses/studios/StudiosView.java +++ b/src/main/java/io/seqera/tower/cli/responses/studios/StudiosView.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.studios; diff --git a/src/main/java/io/seqera/tower/cli/responses/teams/TeamAdded.java b/src/main/java/io/seqera/tower/cli/responses/teams/TeamAdded.java index 39549f1b2..301b66ede 100644 --- a/src/main/java/io/seqera/tower/cli/responses/teams/TeamAdded.java +++ b/src/main/java/io/seqera/tower/cli/responses/teams/TeamAdded.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.teams; diff --git a/src/main/java/io/seqera/tower/cli/responses/teams/TeamDeleted.java b/src/main/java/io/seqera/tower/cli/responses/teams/TeamDeleted.java index c9d19b4b7..6d190277a 100644 --- a/src/main/java/io/seqera/tower/cli/responses/teams/TeamDeleted.java +++ b/src/main/java/io/seqera/tower/cli/responses/teams/TeamDeleted.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.teams; diff --git a/src/main/java/io/seqera/tower/cli/responses/teams/TeamsList.java b/src/main/java/io/seqera/tower/cli/responses/teams/TeamsList.java index 251d1a07d..54f172236 100644 --- a/src/main/java/io/seqera/tower/cli/responses/teams/TeamsList.java +++ b/src/main/java/io/seqera/tower/cli/responses/teams/TeamsList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.teams; diff --git a/src/main/java/io/seqera/tower/cli/responses/teams/members/TeamMemberDeleted.java b/src/main/java/io/seqera/tower/cli/responses/teams/members/TeamMemberDeleted.java index fdb4f3f8b..33afdc478 100644 --- a/src/main/java/io/seqera/tower/cli/responses/teams/members/TeamMemberDeleted.java +++ b/src/main/java/io/seqera/tower/cli/responses/teams/members/TeamMemberDeleted.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.teams.members; diff --git a/src/main/java/io/seqera/tower/cli/responses/teams/members/TeamMembersAdd.java b/src/main/java/io/seqera/tower/cli/responses/teams/members/TeamMembersAdd.java index e2fc7a142..dbc8f0c8f 100644 --- a/src/main/java/io/seqera/tower/cli/responses/teams/members/TeamMembersAdd.java +++ b/src/main/java/io/seqera/tower/cli/responses/teams/members/TeamMembersAdd.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.teams.members; diff --git a/src/main/java/io/seqera/tower/cli/responses/teams/members/TeamMembersList.java b/src/main/java/io/seqera/tower/cli/responses/teams/members/TeamMembersList.java index 291f27146..05c77484e 100644 --- a/src/main/java/io/seqera/tower/cli/responses/teams/members/TeamMembersList.java +++ b/src/main/java/io/seqera/tower/cli/responses/teams/members/TeamMembersList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.teams.members; diff --git a/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceAdded.java b/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceAdded.java index 4b28405b8..3ead8e0ba 100644 --- a/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceAdded.java +++ b/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceAdded.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.workspaces; diff --git a/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceDeleted.java b/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceDeleted.java index ec0d37aae..3012b58ea 100644 --- a/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceDeleted.java +++ b/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceDeleted.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.workspaces; diff --git a/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceList.java b/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceList.java index 7481a7027..4789272ac 100644 --- a/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceList.java +++ b/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.workspaces; diff --git a/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceUpdated.java b/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceUpdated.java index 1f6383af5..d9d2d81fe 100644 --- a/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceUpdated.java +++ b/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceUpdated.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.workspaces; diff --git a/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceView.java b/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceView.java index c3d7699d6..c4c475327 100644 --- a/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceView.java +++ b/src/main/java/io/seqera/tower/cli/responses/workspaces/WorkspaceView.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.responses.workspaces; diff --git a/src/main/java/io/seqera/tower/cli/shared/ComputeEnvExportFormat.java b/src/main/java/io/seqera/tower/cli/shared/ComputeEnvExportFormat.java index 953e0bbc1..5a68b9233 100644 --- a/src/main/java/io/seqera/tower/cli/shared/ComputeEnvExportFormat.java +++ b/src/main/java/io/seqera/tower/cli/shared/ComputeEnvExportFormat.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.shared; diff --git a/src/main/java/io/seqera/tower/cli/shared/WorkflowMetadata.java b/src/main/java/io/seqera/tower/cli/shared/WorkflowMetadata.java index 760bd15d1..25978a73d 100644 --- a/src/main/java/io/seqera/tower/cli/shared/WorkflowMetadata.java +++ b/src/main/java/io/seqera/tower/cli/shared/WorkflowMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.shared; diff --git a/src/main/java/io/seqera/tower/cli/utils/FilesHelper.java b/src/main/java/io/seqera/tower/cli/utils/FilesHelper.java index e9d5d7fac..abe02ecac 100644 --- a/src/main/java/io/seqera/tower/cli/utils/FilesHelper.java +++ b/src/main/java/io/seqera/tower/cli/utils/FilesHelper.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils; diff --git a/src/main/java/io/seqera/tower/cli/utils/FormatHelper.java b/src/main/java/io/seqera/tower/cli/utils/FormatHelper.java index 9a103050b..3eecd7ba0 100644 --- a/src/main/java/io/seqera/tower/cli/utils/FormatHelper.java +++ b/src/main/java/io/seqera/tower/cli/utils/FormatHelper.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils; diff --git a/src/main/java/io/seqera/tower/cli/utils/JsonHelper.java b/src/main/java/io/seqera/tower/cli/utils/JsonHelper.java index ce924584b..9dd4e9203 100644 --- a/src/main/java/io/seqera/tower/cli/utils/JsonHelper.java +++ b/src/main/java/io/seqera/tower/cli/utils/JsonHelper.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils; diff --git a/src/main/java/io/seqera/tower/cli/utils/LenientIntegerDeserializer.java b/src/main/java/io/seqera/tower/cli/utils/LenientIntegerDeserializer.java index 8009401d4..f1e442d35 100644 --- a/src/main/java/io/seqera/tower/cli/utils/LenientIntegerDeserializer.java +++ b/src/main/java/io/seqera/tower/cli/utils/LenientIntegerDeserializer.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils; diff --git a/src/main/java/io/seqera/tower/cli/utils/ModelHelper.java b/src/main/java/io/seqera/tower/cli/utils/ModelHelper.java index d3523b7bd..e799ad5a2 100644 --- a/src/main/java/io/seqera/tower/cli/utils/ModelHelper.java +++ b/src/main/java/io/seqera/tower/cli/utils/ModelHelper.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils; diff --git a/src/main/java/io/seqera/tower/cli/utils/PaginationInfo.java b/src/main/java/io/seqera/tower/cli/utils/PaginationInfo.java index 819426d5e..b78dc3bfe 100644 --- a/src/main/java/io/seqera/tower/cli/utils/PaginationInfo.java +++ b/src/main/java/io/seqera/tower/cli/utils/PaginationInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils; diff --git a/src/main/java/io/seqera/tower/cli/utils/ResponseHelper.java b/src/main/java/io/seqera/tower/cli/utils/ResponseHelper.java index a51b192dc..a521ce728 100644 --- a/src/main/java/io/seqera/tower/cli/utils/ResponseHelper.java +++ b/src/main/java/io/seqera/tower/cli/utils/ResponseHelper.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils; diff --git a/src/main/java/io/seqera/tower/cli/utils/SilentPrintWriter.java b/src/main/java/io/seqera/tower/cli/utils/SilentPrintWriter.java index 5836f9182..6f55d4104 100644 --- a/src/main/java/io/seqera/tower/cli/utils/SilentPrintWriter.java +++ b/src/main/java/io/seqera/tower/cli/utils/SilentPrintWriter.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils; diff --git a/src/main/java/io/seqera/tower/cli/utils/TableList.java b/src/main/java/io/seqera/tower/cli/utils/TableList.java index 18e2902db..815af4fcd 100644 --- a/src/main/java/io/seqera/tower/cli/utils/TableList.java +++ b/src/main/java/io/seqera/tower/cli/utils/TableList.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils; diff --git a/src/main/java/io/seqera/tower/cli/utils/TarFileHelper.java b/src/main/java/io/seqera/tower/cli/utils/TarFileHelper.java index 3640db923..2631f062b 100644 --- a/src/main/java/io/seqera/tower/cli/utils/TarFileHelper.java +++ b/src/main/java/io/seqera/tower/cli/utils/TarFileHelper.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils; diff --git a/src/main/java/io/seqera/tower/cli/utils/TaskExitMixin.java b/src/main/java/io/seqera/tower/cli/utils/TaskExitMixin.java index f833ae890..98c27b8fb 100644 --- a/src/main/java/io/seqera/tower/cli/utils/TaskExitMixin.java +++ b/src/main/java/io/seqera/tower/cli/utils/TaskExitMixin.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils; diff --git a/src/main/java/io/seqera/tower/cli/utils/VersionProvider.java b/src/main/java/io/seqera/tower/cli/utils/VersionProvider.java index 43375f0b6..a5ddbed76 100644 --- a/src/main/java/io/seqera/tower/cli/utils/VersionProvider.java +++ b/src/main/java/io/seqera/tower/cli/utils/VersionProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils; diff --git a/src/main/java/io/seqera/tower/cli/utils/config/ReflectionConfigGenerator.java b/src/main/java/io/seqera/tower/cli/utils/config/ReflectionConfigGenerator.java index 787240389..934f39961 100644 --- a/src/main/java/io/seqera/tower/cli/utils/config/ReflectionConfigGenerator.java +++ b/src/main/java/io/seqera/tower/cli/utils/config/ReflectionConfigGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils.config; diff --git a/src/main/java/io/seqera/tower/cli/utils/data/DataLinkProvider.java b/src/main/java/io/seqera/tower/cli/utils/data/DataLinkProvider.java index 6d097ba96..ee952761c 100644 --- a/src/main/java/io/seqera/tower/cli/utils/data/DataLinkProvider.java +++ b/src/main/java/io/seqera/tower/cli/utils/data/DataLinkProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils.data; diff --git a/src/main/java/io/seqera/tower/cli/utils/progress/ProgressInputStream.java b/src/main/java/io/seqera/tower/cli/utils/progress/ProgressInputStream.java index 24b4e04ba..efbc7a865 100644 --- a/src/main/java/io/seqera/tower/cli/utils/progress/ProgressInputStream.java +++ b/src/main/java/io/seqera/tower/cli/utils/progress/ProgressInputStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils.progress; diff --git a/src/main/java/io/seqera/tower/cli/utils/progress/ProgressTracker.java b/src/main/java/io/seqera/tower/cli/utils/progress/ProgressTracker.java index 992790d41..36695def6 100644 --- a/src/main/java/io/seqera/tower/cli/utils/progress/ProgressTracker.java +++ b/src/main/java/io/seqera/tower/cli/utils/progress/ProgressTracker.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils.progress; diff --git a/src/main/java/io/seqera/tower/cli/utils/progress/ProgressTrackingBodyPublisher.java b/src/main/java/io/seqera/tower/cli/utils/progress/ProgressTrackingBodyPublisher.java index c4e8bbcbf..45641b417 100644 --- a/src/main/java/io/seqera/tower/cli/utils/progress/ProgressTrackingBodyPublisher.java +++ b/src/main/java/io/seqera/tower/cli/utils/progress/ProgressTrackingBodyPublisher.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils.progress; diff --git a/src/main/resources/logback.xml b/src/main/resources/logback.xml index 2fe6f27e3..fd2a92da9 100644 --- a/src/main/resources/logback.xml +++ b/src/main/resources/logback.xml @@ -1,18 +1,17 @@ diff --git a/src/test/java/io/seqera/tower/cli/BaseCmdTest.java b/src/test/java/io/seqera/tower/cli/BaseCmdTest.java index 2d93317e5..791bd2a7d 100644 --- a/src/test/java/io/seqera/tower/cli/BaseCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/BaseCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/InfoCmdTest.java b/src/test/java/io/seqera/tower/cli/InfoCmdTest.java index 08dd721d9..693ee3f7f 100644 --- a/src/test/java/io/seqera/tower/cli/InfoCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/InfoCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli; @@ -57,7 +56,7 @@ void testInfo(OutputType format, MockServerClient mock) throws IOException { Map opts = new HashMap<>(); opts.put("cliVersion", getCliVersion() ); opts.put("cliApiVersion", getCliApiVersion()); - opts.put("towerApiVersion", "1.98.0"); + opts.put("towerApiVersion", "1.109.0"); opts.put("towerVersion", "22.3.0-torricelli"); opts.put("towerApiEndpoint", "http://localhost:"+mock.getPort()); opts.put("userName", "jordi"); @@ -87,7 +86,7 @@ void testInfoStatusTokenFail(MockServerClient mock) throws IOException { Map opts = new HashMap<>(); opts.put("cliVersion", getCliVersion() ); opts.put("cliApiVersion", getCliApiVersion()); - opts.put("towerApiVersion", "1.98.0"); + opts.put("towerApiVersion", "1.109.0"); opts.put("towerVersion", "22.3.0-torricelli"); opts.put("towerApiEndpoint", "http://localhost:"+mock.getPort()); opts.put("userName", null); diff --git a/src/test/java/io/seqera/tower/cli/LaunchCmdTest.java b/src/test/java/io/seqera/tower/cli/LaunchCmdTest.java index 8e07a84f1..6ce9dafe2 100644 --- a/src/test/java/io/seqera/tower/cli/LaunchCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/LaunchCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/actions/ActionsCmdTest.java b/src/test/java/io/seqera/tower/cli/actions/ActionsCmdTest.java index 8ce1dbe01..e5c124495 100644 --- a/src/test/java/io/seqera/tower/cli/actions/ActionsCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/actions/ActionsCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.actions; diff --git a/src/test/java/io/seqera/tower/cli/collaborators/CollaboratorsCmdTest.java b/src/test/java/io/seqera/tower/cli/collaborators/CollaboratorsCmdTest.java index 54c88e88a..aee4faf1d 100644 --- a/src/test/java/io/seqera/tower/cli/collaborators/CollaboratorsCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/collaborators/CollaboratorsCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.collaborators; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/ComputeEnvsCmdTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/ComputeEnvsCmdTest.java index 06826b4a4..10f302403 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/ComputeEnvsCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/ComputeEnvsCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AltairPlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AltairPlatformTest.java index 8b9deb430..cd6a15d1d 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AltairPlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AltairPlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AwsBatchForgePlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AwsBatchForgePlatformTest.java index 30c636ce7..b5efa55eb 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AwsBatchForgePlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AwsBatchForgePlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AwsBatchManualPlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AwsBatchManualPlatformTest.java index f3f6f22f2..33ad8d88b 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AwsBatchManualPlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AwsBatchManualPlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AwsCloudPlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AwsCloudPlatformTest.java index d4f24ef71..5a450d782 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AwsCloudPlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AwsCloudPlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AzBatchForgePlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AzBatchForgePlatformTest.java index 1f1dfe8eb..75ca2edba 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AzBatchForgePlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AzBatchForgePlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AzBatchManualPlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AzBatchManualPlatformTest.java index 7fc1c4d8b..f30e40e8e 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AzBatchManualPlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AzBatchManualPlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AzCloudPlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AzCloudPlatformTest.java index ffe0f9773..a2e3312ab 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AzCloudPlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/AzCloudPlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/EksPlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/EksPlatformTest.java index e7a493130..cf72bd705 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/EksPlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/EksPlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/GkePlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/GkePlatformTest.java index ccd21a016..8822e5896 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/GkePlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/GkePlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/GoogleBatchPlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/GoogleBatchPlatformTest.java index b22d58b47..28cfc8893 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/GoogleBatchPlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/GoogleBatchPlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/GoogleCloudPlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/GoogleCloudPlatformTest.java index 2f6cfe3fc..a4e690b1c 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/GoogleCloudPlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/GoogleCloudPlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/GoogleLifeSciencesPlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/GoogleLifeSciencesPlatformTest.java index f81bbc2fd..79ecb67cb 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/GoogleLifeSciencesPlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/GoogleLifeSciencesPlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/K8sPlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/K8sPlatformTest.java index 13f695528..8b9310eae 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/K8sPlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/K8sPlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/LsfPlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/LsfPlatformTest.java index 0751986c2..81bae41ef 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/LsfPlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/LsfPlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/MoabPlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/MoabPlatformTest.java index c0ab7af61..496f781cb 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/MoabPlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/MoabPlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/SeqeraComputePlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/SeqeraComputePlatformTest.java index f468836ab..cbf854dcf 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/SeqeraComputePlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/SeqeraComputePlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/SlurmPlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/SlurmPlatformTest.java index 99ab4ee4f..2bc20f7d0 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/SlurmPlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/SlurmPlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/UnivaPlatformTest.java b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/UnivaPlatformTest.java index 35fef2dee..f8776ffd4 100644 --- a/src/test/java/io/seqera/tower/cli/computeenvs/platforms/UnivaPlatformTest.java +++ b/src/test/java/io/seqera/tower/cli/computeenvs/platforms/UnivaPlatformTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.computeenvs.platforms; diff --git a/src/test/java/io/seqera/tower/cli/credentials/CredentialsCmdTest.java b/src/test/java/io/seqera/tower/cli/credentials/CredentialsCmdTest.java index 1625a7fb8..351b046bb 100644 --- a/src/test/java/io/seqera/tower/cli/credentials/CredentialsCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/credentials/CredentialsCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/credentials/providers/AgentProviderTest.java b/src/test/java/io/seqera/tower/cli/credentials/providers/AgentProviderTest.java index 90e04ab27..943ef6b39 100644 --- a/src/test/java/io/seqera/tower/cli/credentials/providers/AgentProviderTest.java +++ b/src/test/java/io/seqera/tower/cli/credentials/providers/AgentProviderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/credentials/providers/AwsProviderTest.java b/src/test/java/io/seqera/tower/cli/credentials/providers/AwsProviderTest.java index 42194e046..8c124adc4 100644 --- a/src/test/java/io/seqera/tower/cli/credentials/providers/AwsProviderTest.java +++ b/src/test/java/io/seqera/tower/cli/credentials/providers/AwsProviderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/credentials/providers/AzureProviderTest.java b/src/test/java/io/seqera/tower/cli/credentials/providers/AzureProviderTest.java index 5b3c0dfe8..057e8dd59 100644 --- a/src/test/java/io/seqera/tower/cli/credentials/providers/AzureProviderTest.java +++ b/src/test/java/io/seqera/tower/cli/credentials/providers/AzureProviderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/credentials/providers/BitbucketProviderTest.java b/src/test/java/io/seqera/tower/cli/credentials/providers/BitbucketProviderTest.java index e550bd9fb..599a413af 100644 --- a/src/test/java/io/seqera/tower/cli/credentials/providers/BitbucketProviderTest.java +++ b/src/test/java/io/seqera/tower/cli/credentials/providers/BitbucketProviderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/credentials/providers/CodeCommitProviderTest.java b/src/test/java/io/seqera/tower/cli/credentials/providers/CodeCommitProviderTest.java index 50fa64c3e..607a78e2b 100644 --- a/src/test/java/io/seqera/tower/cli/credentials/providers/CodeCommitProviderTest.java +++ b/src/test/java/io/seqera/tower/cli/credentials/providers/CodeCommitProviderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/credentials/providers/ContainerRegistryProviderTest.java b/src/test/java/io/seqera/tower/cli/credentials/providers/ContainerRegistryProviderTest.java index b94e2f2d4..1a77dd78e 100644 --- a/src/test/java/io/seqera/tower/cli/credentials/providers/ContainerRegistryProviderTest.java +++ b/src/test/java/io/seqera/tower/cli/credentials/providers/ContainerRegistryProviderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/credentials/providers/GiteaProviderTest.java b/src/test/java/io/seqera/tower/cli/credentials/providers/GiteaProviderTest.java index e2e2e5f83..bdcb6f838 100644 --- a/src/test/java/io/seqera/tower/cli/credentials/providers/GiteaProviderTest.java +++ b/src/test/java/io/seqera/tower/cli/credentials/providers/GiteaProviderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/credentials/providers/GithubProviderTest.java b/src/test/java/io/seqera/tower/cli/credentials/providers/GithubProviderTest.java index 1de8a1079..9f4d32565 100644 --- a/src/test/java/io/seqera/tower/cli/credentials/providers/GithubProviderTest.java +++ b/src/test/java/io/seqera/tower/cli/credentials/providers/GithubProviderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/credentials/providers/GitlabProviderTest.java b/src/test/java/io/seqera/tower/cli/credentials/providers/GitlabProviderTest.java index 978dfe9fb..61868ff78 100644 --- a/src/test/java/io/seqera/tower/cli/credentials/providers/GitlabProviderTest.java +++ b/src/test/java/io/seqera/tower/cli/credentials/providers/GitlabProviderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/credentials/providers/GoogleProviderTest.java b/src/test/java/io/seqera/tower/cli/credentials/providers/GoogleProviderTest.java index de18c6556..b06b3b638 100644 --- a/src/test/java/io/seqera/tower/cli/credentials/providers/GoogleProviderTest.java +++ b/src/test/java/io/seqera/tower/cli/credentials/providers/GoogleProviderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/credentials/providers/K8sProviderTest.java b/src/test/java/io/seqera/tower/cli/credentials/providers/K8sProviderTest.java index 44672d789..3296a77e1 100644 --- a/src/test/java/io/seqera/tower/cli/credentials/providers/K8sProviderTest.java +++ b/src/test/java/io/seqera/tower/cli/credentials/providers/K8sProviderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/credentials/providers/SshProviderTest.java b/src/test/java/io/seqera/tower/cli/credentials/providers/SshProviderTest.java index 09f553d05..80f6979d4 100644 --- a/src/test/java/io/seqera/tower/cli/credentials/providers/SshProviderTest.java +++ b/src/test/java/io/seqera/tower/cli/credentials/providers/SshProviderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/data/DataLinksCmdTest.java b/src/test/java/io/seqera/tower/cli/data/DataLinksCmdTest.java index 532137700..5906e9780 100644 --- a/src/test/java/io/seqera/tower/cli/data/DataLinksCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/data/DataLinksCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/datasets/DatasetsCmdTest.java b/src/test/java/io/seqera/tower/cli/datasets/DatasetsCmdTest.java index 6062d854a..8b20445f6 100644 --- a/src/test/java/io/seqera/tower/cli/datasets/DatasetsCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/datasets/DatasetsCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.datasets; diff --git a/src/test/java/io/seqera/tower/cli/labels/LabelsCmdTest.java b/src/test/java/io/seqera/tower/cli/labels/LabelsCmdTest.java index 17adfef1a..4786a9f59 100644 --- a/src/test/java/io/seqera/tower/cli/labels/LabelsCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/labels/LabelsCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.labels; diff --git a/src/test/java/io/seqera/tower/cli/members/MembersCmdTest.java b/src/test/java/io/seqera/tower/cli/members/MembersCmdTest.java index 00c36f1e9..c4fa35187 100644 --- a/src/test/java/io/seqera/tower/cli/members/MembersCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/members/MembersCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.members; diff --git a/src/test/java/io/seqera/tower/cli/organizations/OrganizationsCmdTest.java b/src/test/java/io/seqera/tower/cli/organizations/OrganizationsCmdTest.java index 74de78691..e2838d569 100644 --- a/src/test/java/io/seqera/tower/cli/organizations/OrganizationsCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/organizations/OrganizationsCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.organizations; diff --git a/src/test/java/io/seqera/tower/cli/participants/ParticipantsCmdTest.java b/src/test/java/io/seqera/tower/cli/participants/ParticipantsCmdTest.java index 4c859412d..3af52b68e 100644 --- a/src/test/java/io/seqera/tower/cli/participants/ParticipantsCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/participants/ParticipantsCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.participants; diff --git a/src/test/java/io/seqera/tower/cli/pipelines/PipelinesCmdTest.java b/src/test/java/io/seqera/tower/cli/pipelines/PipelinesCmdTest.java index 8aae1ae5e..787b91456 100644 --- a/src/test/java/io/seqera/tower/cli/pipelines/PipelinesCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/pipelines/PipelinesCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ /* diff --git a/src/test/java/io/seqera/tower/cli/pipelineschemas/PipelineSchemaCmdTest.java b/src/test/java/io/seqera/tower/cli/pipelineschemas/PipelineSchemaCmdTest.java index 0e0a5f49b..f0e01ffad 100644 --- a/src/test/java/io/seqera/tower/cli/pipelineschemas/PipelineSchemaCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/pipelineschemas/PipelineSchemaCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.pipelineschemas; diff --git a/src/test/java/io/seqera/tower/cli/runs/MetricsCmdTest.java b/src/test/java/io/seqera/tower/cli/runs/MetricsCmdTest.java index 60515b91f..360526ca0 100644 --- a/src/test/java/io/seqera/tower/cli/runs/MetricsCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/runs/MetricsCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.runs; diff --git a/src/test/java/io/seqera/tower/cli/runs/RunsCmdTest.java b/src/test/java/io/seqera/tower/cli/runs/RunsCmdTest.java index a19d3b36d..dc33d2861 100644 --- a/src/test/java/io/seqera/tower/cli/runs/RunsCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/runs/RunsCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.runs; diff --git a/src/test/java/io/seqera/tower/cli/runs/TaskCmdTest.java b/src/test/java/io/seqera/tower/cli/runs/TaskCmdTest.java index 3edcf148d..2d697f5b1 100644 --- a/src/test/java/io/seqera/tower/cli/runs/TaskCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/runs/TaskCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.runs; diff --git a/src/test/java/io/seqera/tower/cli/runs/TasksCmdTest.java b/src/test/java/io/seqera/tower/cli/runs/TasksCmdTest.java index 6aa52d916..f69924f09 100644 --- a/src/test/java/io/seqera/tower/cli/runs/TasksCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/runs/TasksCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.runs; diff --git a/src/test/java/io/seqera/tower/cli/secrets/SecretsCmdTest.java b/src/test/java/io/seqera/tower/cli/secrets/SecretsCmdTest.java index e13558d22..e8adb103b 100644 --- a/src/test/java/io/seqera/tower/cli/secrets/SecretsCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/secrets/SecretsCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.secrets; diff --git a/src/test/java/io/seqera/tower/cli/shared/ComputeEnvExportFormatTest.java b/src/test/java/io/seqera/tower/cli/shared/ComputeEnvExportFormatTest.java index 36444c388..0137fd5aa 100644 --- a/src/test/java/io/seqera/tower/cli/shared/ComputeEnvExportFormatTest.java +++ b/src/test/java/io/seqera/tower/cli/shared/ComputeEnvExportFormatTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.shared; diff --git a/src/test/java/io/seqera/tower/cli/studios/StudiosCmdTest.java b/src/test/java/io/seqera/tower/cli/studios/StudiosCmdTest.java index 6f5168c64..f3ed41469 100644 --- a/src/test/java/io/seqera/tower/cli/studios/StudiosCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/studios/StudiosCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.studios; diff --git a/src/test/java/io/seqera/tower/cli/teams/TeamsCmdTest.java b/src/test/java/io/seqera/tower/cli/teams/TeamsCmdTest.java index 0cd16195a..2667d650e 100644 --- a/src/test/java/io/seqera/tower/cli/teams/TeamsCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/teams/TeamsCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.teams; diff --git a/src/test/java/io/seqera/tower/cli/teams/members/TeamMembersCmdTest.java b/src/test/java/io/seqera/tower/cli/teams/members/TeamMembersCmdTest.java index 4553d938d..1e1bef97b 100644 --- a/src/test/java/io/seqera/tower/cli/teams/members/TeamMembersCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/teams/members/TeamMembersCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.teams.members; diff --git a/src/test/java/io/seqera/tower/cli/utils/TaskExitMixinTest.java b/src/test/java/io/seqera/tower/cli/utils/TaskExitMixinTest.java index 03024d927..213f22919 100644 --- a/src/test/java/io/seqera/tower/cli/utils/TaskExitMixinTest.java +++ b/src/test/java/io/seqera/tower/cli/utils/TaskExitMixinTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.utils; diff --git a/src/test/java/io/seqera/tower/cli/workspaces/WorkspacesCmdTest.java b/src/test/java/io/seqera/tower/cli/workspaces/WorkspacesCmdTest.java index f3ac42c93..334436730 100644 --- a/src/test/java/io/seqera/tower/cli/workspaces/WorkspacesCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/workspaces/WorkspacesCmdTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2021-2023, Seqera. + * Copyright 2021-2026, Seqera. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -12,7 +12,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * */ package io.seqera.tower.cli.workspaces; diff --git a/src/test/resources/runcmd/info/service-info.json b/src/test/resources/runcmd/info/service-info.json index 587205da0..a78a8c196 100644 --- a/src/test/resources/runcmd/info/service-info.json +++ b/src/test/resources/runcmd/info/service-info.json @@ -1,7 +1,7 @@ { "serviceInfo": { "version": "22.3.0-torricelli", - "apiVersion": "1.98.0", + "apiVersion": "1.109.0", "commitId": "3f04bfd4", "authTypes": [ "github",