From 4003328ff5a04be9c5fdb85a1bdf92d2b5142ae8 Mon Sep 17 00:00:00 2001 From: Cristian Ramon-Cortes Date: Fri, 20 Feb 2026 09:50:41 +0100 Subject: [PATCH 01/14] feat: Create TOML file [COMP-1266] --- build.gradle | 54 +++++++++++++++++++-------------------- gradle/libs.versions.toml | 48 ++++++++++++++++++++++++++++++++++ settings.gradle | 2 +- 3 files changed, 76 insertions(+), 28 deletions(-) create mode 100644 gradle/libs.versions.toml diff --git a/build.gradle b/build.gradle index 1012ecd0..8cb91c14 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.cadixdevLicenser) + alias(libs.plugins.graalvmNative) + alias(libs.plugins.shadow) } // define these in the `gradle.properties` file @@ -23,34 +23,34 @@ 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) } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml new file mode 100644 index 00000000..b4e84d47 --- /dev/null +++ b/gradle/libs.versions.toml @@ -0,0 +1,48 @@ +[versions] +classgraphVersion = "4.8.165" +commonsCompressVersion = "1.28.0" +commonsIoVersion = "2.20.0" +foojayResolverVersion = "0.7.0" +graalvmNativeVersion = "0.10.6" +jakartaAnnotationVersion = "3.0.0" +javaxAnnotationVersion = "1.3.2" +jerseyVersion = "2.47" +junitVersion = "5.8.2" +licenserVersion = "0.6.1" +logbackVersion = "1.5.25" +mockserverVersion = "5.15.0" +picocliVersion = "4.6.3" +shadowVersion = "8.3.9" +slf4jVersion = "1.7.36" +towerJavaSdkVersion = "1.107.0" +xzVersion = "1.9" + +[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" } +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] +cadixdevLicenser = { id = "org.cadixdev.licenser", version.ref = "licenserVersion" } +foojayResolver = { id = "org.gradle.toolchains.foojay-resolver-convention", version.ref = "foojayResolverVersion" } +graalvmNative = { id = "org.graalvm.buildtools.native", version.ref = "graalvmNativeVersion" } +shadow = { id = "com.gradleup.shadow", version.ref = "shadowVersion" } diff --git a/settings.gradle b/settings.gradle index 0906e3e9..71b18b15 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" + alias(libs.plugins.foojayResolver) } rootProject.name = 'tower-cli' From 5aac67fdde17b201b9c9f6e1d805bc23f934de2f Mon Sep 17 00:00:00 2001 From: Cristian Ramon-Cortes Date: Fri, 20 Feb 2026 09:52:15 +0100 Subject: [PATCH 02/14] feat: Update gradle version 9.3.1 [COMP-1266] --- gradle/wrapper/gradle-wrapper.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index d4081da4..37f78a6a 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 From 2b69551931236d5cb221c3b28d4032fc9108389a Mon Sep 17 00:00:00 2001 From: Cristian Ramon-Cortes Date: Fri, 20 Feb 2026 09:55:55 +0100 Subject: [PATCH 03/14] feat: Update versions of all dependencies [COMP-1266] --- gradle/libs.versions.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index b4e84d47..7907322b 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,21 +1,21 @@ [versions] -classgraphVersion = "4.8.165" +classgraphVersion = "4.8.180" commonsCompressVersion = "1.28.0" -commonsIoVersion = "2.20.0" -foojayResolverVersion = "0.7.0" -graalvmNativeVersion = "0.10.6" +commonsIoVersion = "2.21.0" +foojayResolverVersion = "1.0.0" +graalvmNativeVersion = "0.11.1" jakartaAnnotationVersion = "3.0.0" javaxAnnotationVersion = "1.3.2" jerseyVersion = "2.47" -junitVersion = "5.8.2" +junitVersion = "5.12.2" licenserVersion = "0.6.1" -logbackVersion = "1.5.25" +logbackVersion = "1.5.32" mockserverVersion = "5.15.0" -picocliVersion = "4.6.3" -shadowVersion = "8.3.9" -slf4jVersion = "1.7.36" +picocliVersion = "4.7.7" +shadowVersion = "9.3.1" +slf4jVersion = "2.0.17" towerJavaSdkVersion = "1.107.0" -xzVersion = "1.9" +xzVersion = "1.10" [libraries] classgraph = { group = "io.github.classgraph", name = "classgraph", version.ref = "classgraphVersion" } From 5f800e46a9ef7b93b881514409c8023cff4f5bef Mon Sep 17 00:00:00 2001 From: Cristian Ramon-Cortes Date: Fri, 20 Feb 2026 10:00:28 +0100 Subject: [PATCH 04/14] fix: Fix foojay plugin [COMP-1266] --- gradle/libs.versions.toml | 2 -- settings.gradle | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 7907322b..f6588960 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -2,7 +2,6 @@ classgraphVersion = "4.8.180" commonsCompressVersion = "1.28.0" commonsIoVersion = "2.21.0" -foojayResolverVersion = "1.0.0" graalvmNativeVersion = "0.11.1" jakartaAnnotationVersion = "3.0.0" javaxAnnotationVersion = "1.3.2" @@ -43,6 +42,5 @@ xz = { group = "org.tukaani", name = "xz", version.ref = "xzVersion" } [plugins] cadixdevLicenser = { id = "org.cadixdev.licenser", version.ref = "licenserVersion" } -foojayResolver = { id = "org.gradle.toolchains.foojay-resolver-convention", version.ref = "foojayResolverVersion" } graalvmNative = { id = "org.graalvm.buildtools.native", version.ref = "graalvmNativeVersion" } shadow = { id = "com.gradleup.shadow", version.ref = "shadowVersion" } diff --git a/settings.gradle b/settings.gradle index 71b18b15..1b53493d 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 - alias(libs.plugins.foojayResolver) + id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0" } rootProject.name = 'tower-cli' From cebb86349135873ef551f41538afe8b6e1978087 Mon Sep 17 00:00:00 2001 From: Cristian Ramon-Cortes Date: Fri, 20 Feb 2026 10:03:05 +0100 Subject: [PATCH 05/14] feat: Update build.gradle to use better syntax [COMP-1266] --- build.gradle | 111 +++++++++++++++++++++++++-------------------------- 1 file changed, 55 insertions(+), 56 deletions(-) diff --git a/build.gradle b/build.gradle index 8cb91c14..5bbcf439 100644 --- a/build.gradle +++ b/build.gradle @@ -65,11 +65,55 @@ license { exclude 'conf/**' } -task buildInfo { +application { + mainClass.set('io.seqera.tower.cli.Tower') +} + +java { + toolchain { + languageVersion = JavaLanguageVersion.of(21) + } +} + +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 +127,13 @@ task buildInfo { } } -java { - toolchain { - languageVersion = JavaLanguageVersion.of(21) - } -} - -compileJava { - sourceCompatibility = JavaVersion.toVersion("11") - targetCompatibility = JavaVersion.toVersion("11") +tasks.named('compileJava') { + options.release = 11 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 +153,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 } From f8bbf917f623ec047b42456b126cc8566ffb7f7c Mon Sep 17 00:00:00 2001 From: Cristian Ramon-Cortes Date: Fri, 20 Feb 2026 10:14:22 +0100 Subject: [PATCH 06/14] feat: Update license header plugin to be compatible with Gradle 9.x [COMP-1266] --- HEADER.txt | 5 ++--- build.gradle | 15 ++++++--------- gradle/libs.versions.toml | 4 ++-- 3 files changed, 10 insertions(+), 14 deletions(-) diff --git a/HEADER.txt b/HEADER.txt index 9864c836..9d7a71f6 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/build.gradle b/build.gradle index 5bbcf439..3388dd53 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ plugins { id 'java' id 'application' id 'jacoco' - alias(libs.plugins.cadixdevLicenser) + alias(libs.plugins.yumiLicenser) alias(libs.plugins.graalvmNative) alias(libs.plugins.shadow) } @@ -55,14 +55,11 @@ dependencies { } license { - header = project.file('HEADER.txt') - properties { - name = 'Seqera' - year = '2021-2023' - } - exclude '**/*.properties' - exclude 'gradlew' - exclude 'conf/**' + rule(file('HEADER.txt')) + exclude('**/*.properties') + exclude('**/*.xml') + exclude('gradlew') + exclude('conf/**') } application { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index f6588960..8b6519b7 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -7,7 +7,7 @@ jakartaAnnotationVersion = "3.0.0" javaxAnnotationVersion = "1.3.2" jerseyVersion = "2.47" junitVersion = "5.12.2" -licenserVersion = "0.6.1" +licenserVersion = "2.2.2" logbackVersion = "1.5.32" mockserverVersion = "5.15.0" picocliVersion = "4.7.7" @@ -41,6 +41,6 @@ towerJavaSdk = { group = "io.seqera.tower", name = "tower-java-sdk", version.ref xz = { group = "org.tukaani", name = "xz", version.ref = "xzVersion" } [plugins] -cadixdevLicenser = { id = "org.cadixdev.licenser", version.ref = "licenserVersion" } +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" } From ae7348ec90eb7625a027ac9b6f0993b322048f4d Mon Sep 17 00:00:00 2001 From: Cristian Ramon-Cortes Date: Fri, 20 Feb 2026 10:14:43 +0100 Subject: [PATCH 07/14] feat: Update license headers in all source files [COMP-1266] --- src/main/java/io/seqera/tower/cli/Tower.java | 3 +-- .../tower/cli/commands/AbstractApiCmd.java | 3 +-- .../tower/cli/commands/AbstractCmd.java | 3 +-- .../tower/cli/commands/AbstractRootCmd.java | 3 +-- .../seqera/tower/cli/commands/ActionsCmd.java | 3 +-- .../tower/cli/commands/CollaboratorsCmd.java | 3 +-- .../tower/cli/commands/ComputeEnvsCmd.java | 3 +-- .../tower/cli/commands/CredentialsCmd.java | 3 +-- .../tower/cli/commands/DataLinksCmd.java | 3 +-- .../tower/cli/commands/DatasetsCmd.java | 3 +-- .../io/seqera/tower/cli/commands/InfoCmd.java | 3 +-- .../seqera/tower/cli/commands/LaunchCmd.java | 3 +-- .../seqera/tower/cli/commands/MembersCmd.java | 3 +-- .../tower/cli/commands/OrganizationsCmd.java | 3 +-- .../tower/cli/commands/ParticipantsCmd.java | 3 +-- .../cli/commands/PipelineSchemasCmd.java | 3 +-- .../tower/cli/commands/PipelinesCmd.java | 3 +-- .../io/seqera/tower/cli/commands/RunsCmd.java | 3 +-- .../seqera/tower/cli/commands/SecretsCmd.java | 3 +-- .../seqera/tower/cli/commands/StudiosCmd.java | 3 +-- .../seqera/tower/cli/commands/TeamsCmd.java | 3 +-- .../tower/cli/commands/WorkspacesCmd.java | 3 +-- .../commands/actions/AbstractActionsCmd.java | 3 +-- .../commands/actions/ActionRefOptions.java | 3 +-- .../actions/ActionsLabelsManager.java | 3 +-- .../tower/cli/commands/actions/AddCmd.java | 3 +-- .../tower/cli/commands/actions/DeleteCmd.java | 3 +-- .../tower/cli/commands/actions/LabelsCmd.java | 3 +-- .../tower/cli/commands/actions/ListCmd.java | 3 +-- .../tower/cli/commands/actions/UpdateCmd.java | 3 +-- .../tower/cli/commands/actions/ViewCmd.java | 3 +-- .../commands/actions/add/AbstractAddCmd.java | 3 +-- .../commands/actions/add/AddGitHubCmd.java | 3 +-- .../cli/commands/actions/add/AddTowerCmd.java | 3 +-- .../AbstractCollaboratorsCmd.java | 3 +-- .../cli/commands/collaborators/ListCmd.java | 3 +-- .../computeenvs/AbstractComputeEnvCmd.java | 3 +-- .../cli/commands/computeenvs/AddCmd.java | 3 +-- .../computeenvs/ComputeEnvRefOptions.java | 3 +-- .../cli/commands/computeenvs/DeleteCmd.java | 3 +-- .../cli/commands/computeenvs/ExportCmd.java | 3 +-- .../cli/commands/computeenvs/ImportCmd.java | 3 +-- .../cli/commands/computeenvs/ListCmd.java | 3 +-- .../cli/commands/computeenvs/PrimaryCmd.java | 3 +-- .../cli/commands/computeenvs/UpdateCmd.java | 3 +-- .../cli/commands/computeenvs/ViewCmd.java | 3 +-- .../computeenvs/add/AbstractAddCmd.java | 3 +-- .../computeenvs/add/AddAltairCmd.java | 3 +-- .../computeenvs/add/AddAwsCloudCmd.java | 3 +-- .../commands/computeenvs/add/AddAwsCmd.java | 3 +-- .../computeenvs/add/AddAzureCloudCmd.java | 3 +-- .../commands/computeenvs/add/AddAzureCmd.java | 3 +-- .../commands/computeenvs/add/AddEksCmd.java | 3 +-- .../commands/computeenvs/add/AddGkeCmd.java | 3 +-- .../computeenvs/add/AddGoogleBatchCmd.java | 3 +-- .../computeenvs/add/AddGoogleCloudCmd.java | 3 +-- .../commands/computeenvs/add/AddK8sCmd.java | 3 +-- .../commands/computeenvs/add/AddLsfCmd.java | 3 +-- .../commands/computeenvs/add/AddMoabCmd.java | 3 +-- .../computeenvs/add/AddSeqeraComputeCmd.java | 3 +-- .../commands/computeenvs/add/AddSlurmCmd.java | 3 +-- .../commands/computeenvs/add/AddUgeCmd.java | 3 +-- .../computeenvs/add/aws/AddAwsForgeCmd.java | 3 +-- .../computeenvs/add/aws/AddAwsManualCmd.java | 3 +-- .../add/azure/AddAzureForgeCmd.java | 3 +-- .../add/azure/AddAzureManualCmd.java | 3 +-- .../platforms/AbstractPlatform.java | 3 +-- .../computeenvs/platforms/AltairPlatform.java | 3 +-- .../platforms/AwsBatchForgePlatform.java | 3 +-- .../platforms/AwsBatchManualPlatform.java | 3 +-- .../platforms/AwsCloudPlatform.java | 3 +-- .../platforms/AzBatchForgePlatform.java | 3 +-- .../platforms/AzBatchManualPlatform.java | 3 +-- .../platforms/AzCloudPlatform.java | 3 +-- .../computeenvs/platforms/EksPlatform.java | 3 +-- .../computeenvs/platforms/GkePlatform.java | 3 +-- .../platforms/GoogleBatchPlatform.java | 3 +-- .../platforms/GoogleCloudPlatform.java | 3 +-- .../computeenvs/platforms/K8sPlatform.java | 3 +-- .../computeenvs/platforms/LsfPlatform.java | 3 +-- .../computeenvs/platforms/MoabPlatform.java | 3 +-- .../computeenvs/platforms/Platform.java | 3 +-- .../platforms/SeqeraComputePlatform.java | 3 +-- .../computeenvs/platforms/SlurmPlatform.java | 3 +-- .../computeenvs/platforms/UnivaPlatform.java | 3 +-- .../AbstractComputeEnvsPrimaryCmd.java | 3 +-- .../commands/computeenvs/primary/GetCmd.java | 3 +-- .../commands/computeenvs/primary/SetCmd.java | 3 +-- .../credentials/AbstractCredentialsCmd.java | 3 +-- .../cli/commands/credentials/AddCmd.java | 3 +-- .../credentials/CredentialsRefOptions.java | 3 +-- .../cli/commands/credentials/DeleteCmd.java | 3 +-- .../cli/commands/credentials/ListCmd.java | 3 +-- .../cli/commands/credentials/UpdateCmd.java | 3 +-- .../credentials/add/AbstractAddCmd.java | 3 +-- .../commands/credentials/add/AddAgentCmd.java | 3 +-- .../commands/credentials/add/AddAwsCmd.java | 3 +-- .../commands/credentials/add/AddAzureCmd.java | 3 +-- .../credentials/add/AddBitbucketCmd.java | 3 +-- .../credentials/add/AddCodeCommitCmd.java | 3 +-- .../add/AddContainerRegistryCmd.java | 3 +-- .../commands/credentials/add/AddGiteaCmd.java | 3 +-- .../credentials/add/AddGithubCmd.java | 3 +-- .../credentials/add/AddGitlabCmd.java | 3 +-- .../credentials/add/AddGoogleCmd.java | 3 +-- .../commands/credentials/add/AddK8sCmd.java | 3 +-- .../commands/credentials/add/AddSshCmd.java | 3 +-- .../providers/AbstractGitProvider.java | 3 +-- .../providers/AbstractProvider.java | 3 +-- .../credentials/providers/AwsProvider.java | 3 +-- .../credentials/providers/AzureProvider.java | 3 +-- .../providers/BitbucketProvider.java | 3 +-- .../providers/CodeCommitProvider.java | 3 +-- .../providers/ContainerRegistryProvider.java | 3 +-- .../providers/CredentialsProvider.java | 3 +-- .../credentials/providers/GiteaProvider.java | 3 +-- .../credentials/providers/GithubProvider.java | 3 +-- .../credentials/providers/GitlabProvider.java | 3 +-- .../credentials/providers/GoogleProvider.java | 3 +-- .../credentials/providers/K8sProvider.java | 3 +-- .../credentials/providers/SshProvider.java | 3 +-- .../providers/TwAgentProvider.java | 3 +-- .../credentials/update/AbstractUpdateCmd.java | 3 +-- .../credentials/update/UpdateAgentCmd.java | 3 +-- .../credentials/update/UpdateAwsCmd.java | 3 +-- .../credentials/update/UpdateAzureCmd.java | 3 +-- .../update/UpdateBitbucketCmd.java | 3 +-- .../update/UpdateCodeCommitCmd.java | 3 +-- .../update/UpdateContainerRegistryCmd.java | 3 +-- .../credentials/update/UpdateGithubCmd.java | 3 +-- .../credentials/update/UpdateGitlabCmd.java | 3 +-- .../credentials/update/UpdateGoogleCmd.java | 3 +-- .../credentials/update/UpdateK8sCmd.java | 3 +-- .../credentials/update/UpdateSshCmd.java | 3 +-- .../data/links/AbstractDataLinksCmd.java | 3 +-- .../tower/cli/commands/data/links/AddCmd.java | 3 +-- .../cli/commands/data/links/BrowseCmd.java | 3 +-- .../data/links/DataLinkRefOptions.java | 3 +-- .../commands/data/links/DataLinkService.java | 3 +-- .../cli/commands/data/links/DeleteCmd.java | 3 +-- .../cli/commands/data/links/DownloadCmd.java | 3 +-- .../cli/commands/data/links/ListCmd.java | 3 +-- .../cli/commands/data/links/SearchOption.java | 3 +-- .../cli/commands/data/links/UpdateCmd.java | 3 +-- .../cli/commands/data/links/UploadCmd.java | 3 +-- .../upload/AbstractProviderUploader.java | 3 +-- .../data/links/upload/AwsUploader.java | 3 +-- .../data/links/upload/AzureUploader.java | 3 +-- .../links/upload/CloudProviderUploader.java | 3 +-- .../data/links/upload/GoogleUploader.java | 3 +-- .../datasets/AbstractDatasetsCmd.java | 3 +-- .../tower/cli/commands/datasets/AddCmd.java | 3 +-- .../commands/datasets/DatasetRefOptions.java | 3 +-- .../cli/commands/datasets/DeleteCmd.java | 3 +-- .../cli/commands/datasets/DownloadCmd.java | 3 +-- .../tower/cli/commands/datasets/ListCmd.java | 3 +-- .../cli/commands/datasets/UpdateCmd.java | 3 +-- .../tower/cli/commands/datasets/UrlCmd.java | 3 +-- .../tower/cli/commands/datasets/ViewCmd.java | 3 +-- .../datasets/versions/VersionsCmd.java | 3 +-- .../tower/cli/commands/enums/OutputType.java | 3 +-- .../cli/commands/global/OrgAndWorkspace.java | 3 +-- .../commands/global/OrganizationOption.java | 3 +-- .../commands/global/PaginationOptions.java | 3 +-- .../cli/commands/global/ShowLabelsOption.java | 3 +-- .../global/WorkspaceOptionalOptions.java | 3 +-- .../global/WorkspaceRequiredOptions.java | 3 +-- .../commands/labels/AbstractLabelsCmd.java | 3 +-- .../cli/commands/labels/AddLabelsCmd.java | 3 +-- .../commands/labels/BaseLabelsManager.java | 3 +-- .../cli/commands/labels/DeleteLabelsCmd.java | 3 +-- .../tower/cli/commands/labels/Label.java | 3 +-- .../tower/cli/commands/labels/LabelsCmd.java | 3 +-- .../cli/commands/labels/LabelsFinder.java | 3 +-- .../labels/LabelsOptionalOptions.java | 3 +-- .../commands/labels/LabelsSubcmdOptions.java | 3 +-- .../cli/commands/labels/ListLabelsCmd.java | 3 +-- .../cli/commands/labels/UpdateLabelsCmd.java | 3 +-- .../members/AbstractMembersClass.java | 3 +-- .../tower/cli/commands/members/AddCmd.java | 3 +-- .../tower/cli/commands/members/DeleteCmd.java | 3 +-- .../tower/cli/commands/members/LeaveCmd.java | 3 +-- .../tower/cli/commands/members/ListCmd.java | 3 +-- .../tower/cli/commands/members/UpdateCmd.java | 3 +-- .../AbstractOrganizationsCmd.java | 3 +-- .../cli/commands/organizations/AddCmd.java | 3 +-- .../cli/commands/organizations/DeleteCmd.java | 3 +-- .../cli/commands/organizations/ListCmd.java | 3 +-- .../organizations/OrganizationRefOptions.java | 3 +-- .../organizations/OrganizationsOptions.java | 3 +-- .../cli/commands/organizations/UpdateCmd.java | 3 +-- .../cli/commands/organizations/ViewCmd.java | 3 +-- .../participants/AbstractParticipantsCmd.java | 3 +-- .../cli/commands/participants/AddCmd.java | 3 +-- .../cli/commands/participants/DeleteCmd.java | 3 +-- .../cli/commands/participants/LeaveCmd.java | 3 +-- .../cli/commands/participants/ListCmd.java | 3 +-- .../cli/commands/participants/UpdateCmd.java | 3 +-- .../pipelines/AbstractPipelinesCmd.java | 3 +-- .../tower/cli/commands/pipelines/AddCmd.java | 3 +-- .../cli/commands/pipelines/DeleteCmd.java | 3 +-- .../cli/commands/pipelines/ExportCmd.java | 3 +-- .../cli/commands/pipelines/ImportCmd.java | 3 +-- .../cli/commands/pipelines/LabelsCmd.java | 3 +-- .../cli/commands/pipelines/LaunchOptions.java | 3 +-- .../tower/cli/commands/pipelines/ListCmd.java | 3 +-- .../pipelines/PipelineRefOptions.java | 3 +-- .../pipelines/PipelineVisibility.java | 3 +-- .../pipelines/PipelinesLabelsManager.java | 3 +-- .../cli/commands/pipelines/UpdateCmd.java | 3 +-- .../tower/cli/commands/pipelines/ViewCmd.java | 3 +-- .../AbstractPipelineSchemasCmd.java | 3 +-- .../cli/commands/pipelineschemas/AddCmd.java | 3 +-- .../cli/commands/runs/AbstractRunsCmd.java | 3 +-- .../tower/cli/commands/runs/CancelCmd.java | 3 +-- .../tower/cli/commands/runs/DeleteCmd.java | 3 +-- .../tower/cli/commands/runs/DumpCmd.java | 3 +-- .../tower/cli/commands/runs/LabelsCmd.java | 3 +-- .../tower/cli/commands/runs/ListCmd.java | 3 +-- .../tower/cli/commands/runs/RelaunchCmd.java | 3 +-- .../cli/commands/runs/RunViewOptions.java | 3 +-- .../cli/commands/runs/RunsLabelsManager.java | 3 +-- .../tower/cli/commands/runs/ViewCmd.java | 3 +-- .../commands/runs/download/DownloadCmd.java | 3 +-- .../download/enums/RunDownloadFileType.java | 3 +-- .../cli/commands/runs/metrics/MetricsCmd.java | 3 +-- .../runs/metrics/enums/MetricColumn.java | 3 +-- .../metrics/enums/MetricPreviewFormat.java | 3 +-- .../runs/metrics/enums/MetricType.java | 3 +-- .../commands/runs/metrics/model/Metric.java | 3 +-- .../cli/commands/runs/tasks/TaskCmd.java | 3 +-- .../cli/commands/runs/tasks/TasksCmd.java | 3 +-- .../commands/runs/tasks/enums/TaskColumn.java | 3 +-- .../commands/secrets/AbstractSecretsCmd.java | 3 +-- .../tower/cli/commands/secrets/AddCmd.java | 3 +-- .../tower/cli/commands/secrets/DeleteCmd.java | 3 +-- .../tower/cli/commands/secrets/ListCmd.java | 3 +-- .../commands/secrets/SecretRefOptions.java | 3 +-- .../tower/cli/commands/secrets/UpdateCmd.java | 3 +-- .../tower/cli/commands/secrets/ViewCmd.java | 3 +-- .../commands/studios/AbstractStudiosCmd.java | 3 +-- .../cli/commands/studios/AddAsNewCmd.java | 3 +-- .../tower/cli/commands/studios/AddCmd.java | 3 +-- .../cli/commands/studios/CheckpointsCmd.java | 3 +-- .../commands/studios/DataLinkRefOptions.java | 3 +-- .../tower/cli/commands/studios/DeleteCmd.java | 3 +-- .../tower/cli/commands/studios/ListCmd.java | 3 +-- .../studios/ParentStudioRefOptions.java | 3 +-- .../tower/cli/commands/studios/StartCmd.java | 3 +-- .../tower/cli/commands/studios/StopCmd.java | 3 +-- .../studios/StudioConfigurationOptions.java | 3 +-- .../commands/studios/StudioRefOptions.java | 3 +-- .../studios/StudioTemplateOptions.java | 3 +-- .../cli/commands/studios/TemplatesCmd.java | 3 +-- .../tower/cli/commands/studios/ViewCmd.java | 3 +-- .../cli/commands/teams/AbstractTeamsCmd.java | 3 +-- .../tower/cli/commands/teams/AddCmd.java | 3 +-- .../tower/cli/commands/teams/DeleteCmd.java | 3 +-- .../tower/cli/commands/teams/ListCmd.java | 3 +-- .../tower/cli/commands/teams/MembersCmd.java | 3 +-- .../cli/commands/teams/members/AddCmd.java | 3 +-- .../cli/commands/teams/members/DeleteCmd.java | 3 +-- .../workspaces/AbstractWorkspaceCmd.java | 3 +-- .../tower/cli/commands/workspaces/AddCmd.java | 3 +-- .../cli/commands/workspaces/DeleteCmd.java | 3 +-- .../cli/commands/workspaces/LeaveCmd.java | 3 +-- .../cli/commands/workspaces/ListCmd.java | 3 +-- .../cli/commands/workspaces/UpdateCmd.java | 3 +-- .../cli/commands/workspaces/ViewCmd.java | 3 +-- .../workspaces/WorkspaceRefOptions.java | 3 +-- .../exceptions/ActionNotFoundException.java | 3 +-- .../cli/exceptions/ApiExceptionMessage.java | 3 +-- .../ComputeEnvNotFoundException.java | 3 +-- .../CredentialsNotFoundException.java | 3 +-- .../exceptions/DataLinkNotFoundException.java | 3 +-- .../exceptions/DatasetNotFoundException.java | 3 +-- ...idDataStudioParentCheckpointException.java | 3 +-- .../exceptions/InvalidResponseException.java | 3 +-- .../InvalidWorkspaceParameterException.java | 3 +-- .../exceptions/LaunchNotFoundException.java | 3 +-- .../exceptions/MemberNotFoundException.java | 3 +-- .../MembersMultiplicityException.java | 3 +-- .../exceptions/MembersNotFoundException.java | 3 +-- .../MissingTowerAccessTokenException.java | 3 +-- .../MultipleDataLinksFoundException.java | 3 +-- .../MultiplePipelinesFoundException.java | 3 +-- .../NoComputeEnvironmentException.java | 3 +-- .../OrganizationNotFoundException.java | 3 +-- .../ParticipantNotFoundException.java | 3 +-- .../exceptions/PipelineNotFoundException.java | 3 +-- .../cli/exceptions/RunNotFoundException.java | 3 +-- .../exceptions/SecretNotFoundException.java | 3 +-- .../cli/exceptions/ShowUsageException.java | 3 +-- .../exceptions/StudioNotFoundException.java | 3 +-- ...udiosCustomTemplateWithCondaException.java | 3 +-- .../StudiosTemplateNotFoundException.java | 3 +-- .../cli/exceptions/TeamNotFoundException.java | 3 +-- .../tower/cli/exceptions/TowerException.java | 3 +-- .../cli/exceptions/TowerRuntimeException.java | 3 +-- .../UserOrganizationsNotFoundException.java | 3 +-- .../WorkflowProgressNotFoundException.java | 3 +-- .../WorkspaceNotFoundException.java | 3 +-- .../tower/cli/responses/CredentialsAdded.java | 3 +-- .../cli/responses/CredentialsDeleted.java | 3 +-- .../tower/cli/responses/CredentialsList.java | 3 +-- .../cli/responses/CredentialsUpdated.java | 3 +-- .../tower/cli/responses/InfoResponse.java | 3 +-- .../seqera/tower/cli/responses/Response.java | 3 +-- .../cli/responses/actions/ActionAdd.java | 3 +-- .../cli/responses/actions/ActionUpdate.java | 3 +-- .../cli/responses/actions/ActionsDelete.java | 3 +-- .../cli/responses/actions/ActionsList.java | 3 +-- .../cli/responses/actions/ActionsView.java | 3 +-- .../collaborators/CollaboratorsList.java | 3 +-- .../computeenvs/ComputeEnvAdded.java | 3 +-- .../computeenvs/ComputeEnvDeleted.java | 3 +-- .../computeenvs/ComputeEnvExport.java | 3 +-- .../responses/computeenvs/ComputeEnvList.java | 3 +-- .../computeenvs/ComputeEnvUpdated.java | 3 +-- .../responses/computeenvs/ComputeEnvView.java | 3 +-- .../computeenvs/ComputeEnvsPrimaryGet.java | 3 +-- .../computeenvs/ComputeEnvsPrimarySet.java | 3 +-- .../responses/data/DataLinkContentList.java | 3 +-- .../cli/responses/data/DataLinkDeleted.java | 3 +-- .../data/DataLinkFileTransferResult.java | 3 +-- .../cli/responses/data/DataLinkView.java | 3 +-- .../cli/responses/data/DataLinksList.java | 3 +-- .../cli/responses/datasets/DatasetCreate.java | 3 +-- .../cli/responses/datasets/DatasetDelete.java | 3 +-- .../responses/datasets/DatasetDownload.java | 3 +-- .../cli/responses/datasets/DatasetList.java | 3 +-- .../cli/responses/datasets/DatasetUpdate.java | 3 +-- .../cli/responses/datasets/DatasetUrl.java | 3 +-- .../datasets/DatasetVersionsList.java | 3 +-- .../cli/responses/datasets/DatasetView.java | 3 +-- .../labels/DeleteLabelsResponse.java | 3 +-- .../cli/responses/labels/LabelAdded.java | 3 +-- .../cli/responses/labels/LabelUpdated.java | 3 +-- .../labels/ListLabelsCmdResponse.java | 3 +-- .../cli/responses/labels/ManageLabels.java | 3 +-- .../cli/responses/members/MembersAdded.java | 3 +-- .../cli/responses/members/MembersDeleted.java | 3 +-- .../cli/responses/members/MembersLeave.java | 3 +-- .../cli/responses/members/MembersList.java | 3 +-- .../cli/responses/members/MembersUpdate.java | 3 +-- .../organizations/OrganizationsAdded.java | 3 +-- .../organizations/OrganizationsDeleted.java | 3 +-- .../organizations/OrganizationsList.java | 3 +-- .../organizations/OrganizationsUpdated.java | 3 +-- .../organizations/OrganizationsView.java | 3 +-- .../participants/ParticipantAdded.java | 3 +-- .../participants/ParticipantDeleted.java | 3 +-- .../participants/ParticipantLeft.java | 3 +-- .../participants/ParticipantUpdated.java | 3 +-- .../participants/ParticipantsList.java | 3 +-- .../responses/pipelines/PipelinesAdded.java | 3 +-- .../responses/pipelines/PipelinesDeleted.java | 3 +-- .../responses/pipelines/PipelinesExport.java | 3 +-- .../responses/pipelines/PipelinesList.java | 3 +-- .../responses/pipelines/PipelinesUpdated.java | 3 +-- .../responses/pipelines/PipelinesView.java | 3 +-- .../pipelineschemas/PipelineSchemasAdded.java | 3 +-- .../tower/cli/responses/runs/RunCanceled.java | 3 +-- .../tower/cli/responses/runs/RunDeleted.java | 3 +-- .../tower/cli/responses/runs/RunDump.java | 3 +-- .../cli/responses/runs/RunFileDownloaded.java | 3 +-- .../tower/cli/responses/runs/RunList.java | 3 +-- .../tower/cli/responses/runs/RunSubmited.java | 3 +-- .../tower/cli/responses/runs/RunView.java | 3 +-- .../cli/responses/runs/RunViewMetrics.java | 3 +-- .../cli/responses/runs/tasks/TaskView.java | 3 +-- .../cli/responses/runs/tasks/TasksView.java | 3 +-- .../runs/utils/MetricFormatMapper.java | 3 +-- .../cli/responses/secrets/SecretAdded.java | 3 +-- .../cli/responses/secrets/SecretDeleted.java | 3 +-- .../cli/responses/secrets/SecretUpdated.java | 3 +-- .../cli/responses/secrets/SecretView.java | 3 +-- .../cli/responses/secrets/SecretsList.java | 3 +-- .../studios/StudioCheckpointsList.java | 3 +-- .../cli/responses/studios/StudioDeleted.java | 3 +-- .../studios/StudioStartSubmitted.java | 3 +-- .../studios/StudioStopSubmitted.java | 3 +-- .../cli/responses/studios/StudiosCreated.java | 3 +-- .../cli/responses/studios/StudiosList.java | 3 +-- .../studios/StudiosTemplatesList.java | 3 +-- .../cli/responses/studios/StudiosView.java | 3 +-- .../tower/cli/responses/teams/TeamAdded.java | 3 +-- .../cli/responses/teams/TeamDeleted.java | 3 +-- .../tower/cli/responses/teams/TeamsList.java | 3 +-- .../teams/members/TeamMemberDeleted.java | 3 +-- .../teams/members/TeamMembersAdd.java | 3 +-- .../teams/members/TeamMembersList.java | 3 +-- .../responses/workspaces/WorkspaceAdded.java | 3 +-- .../workspaces/WorkspaceDeleted.java | 3 +-- .../responses/workspaces/WorkspaceList.java | 3 +-- .../workspaces/WorkspaceUpdated.java | 3 +-- .../responses/workspaces/WorkspaceView.java | 3 +-- .../cli/shared/ComputeEnvExportFormat.java | 3 +-- .../tower/cli/shared/WorkflowMetadata.java | 3 +-- .../seqera/tower/cli/utils/FilesHelper.java | 3 +-- .../seqera/tower/cli/utils/FormatHelper.java | 3 +-- .../io/seqera/tower/cli/utils/JsonHelper.java | 3 +-- .../cli/utils/LenientIntegerDeserializer.java | 3 +-- .../seqera/tower/cli/utils/ModelHelper.java | 3 +-- .../tower/cli/utils/PaginationInfo.java | 3 +-- .../tower/cli/utils/ResponseHelper.java | 3 +-- .../tower/cli/utils/SilentPrintWriter.java | 3 +-- .../io/seqera/tower/cli/utils/TableList.java | 3 +-- .../seqera/tower/cli/utils/TarFileHelper.java | 3 +-- .../seqera/tower/cli/utils/TaskExitMixin.java | 3 +-- .../tower/cli/utils/VersionProvider.java | 3 +-- .../config/ReflectionConfigGenerator.java | 3 +-- .../cli/utils/data/DataLinkProvider.java | 3 +-- .../utils/progress/ProgressInputStream.java | 3 +-- .../cli/utils/progress/ProgressTracker.java | 3 +-- .../ProgressTrackingBodyPublisher.java | 3 +-- src/main/resources/logback.xml | 27 +++++++++---------- .../java/io/seqera/tower/cli/BaseCmdTest.java | 3 +-- .../java/io/seqera/tower/cli/InfoCmdTest.java | 3 +-- .../io/seqera/tower/cli/LaunchCmdTest.java | 3 +-- .../tower/cli/actions/ActionsCmdTest.java | 3 +-- .../collaborators/CollaboratorsCmdTest.java | 3 +-- .../cli/computeenvs/ComputeEnvsCmdTest.java | 3 +-- .../platforms/AltairPlatformTest.java | 3 +-- .../platforms/AwsBatchForgePlatformTest.java | 3 +-- .../platforms/AwsBatchManualPlatformTest.java | 3 +-- .../platforms/AwsCloudPlatformTest.java | 3 +-- .../platforms/AzBatchForgePlatformTest.java | 3 +-- .../platforms/AzBatchManualPlatformTest.java | 3 +-- .../platforms/AzCloudPlatformTest.java | 3 +-- .../platforms/EksPlatformTest.java | 3 +-- .../platforms/GkePlatformTest.java | 3 +-- .../platforms/GoogleBatchPlatformTest.java | 3 +-- .../platforms/GoogleCloudPlatformTest.java | 3 +-- .../GoogleLifeSciencesPlatformTest.java | 3 +-- .../platforms/K8sPlatformTest.java | 3 +-- .../platforms/LsfPlatformTest.java | 3 +-- .../platforms/MoabPlatformTest.java | 3 +-- .../platforms/SeqeraComputePlatformTest.java | 3 +-- .../platforms/SlurmPlatformTest.java | 3 +-- .../platforms/UnivaPlatformTest.java | 3 +-- .../cli/credentials/CredentialsCmdTest.java | 3 +-- .../providers/AgentProviderTest.java | 3 +-- .../providers/AwsProviderTest.java | 3 +-- .../providers/AzureProviderTest.java | 3 +-- .../providers/BitbucketProviderTest.java | 3 +-- .../providers/CodeCommitProviderTest.java | 3 +-- .../ContainerRegistryProviderTest.java | 3 +-- .../providers/GiteaProviderTest.java | 3 +-- .../providers/GithubProviderTest.java | 3 +-- .../providers/GitlabProviderTest.java | 3 +-- .../providers/GoogleProviderTest.java | 3 +-- .../providers/K8sProviderTest.java | 3 +-- .../providers/SshProviderTest.java | 3 +-- .../tower/cli/data/DataLinksCmdTest.java | 3 +-- .../tower/cli/datasets/DatasetsCmdTest.java | 3 +-- .../tower/cli/labels/LabelsCmdTest.java | 3 +-- .../tower/cli/members/MembersCmdTest.java | 3 +-- .../organizations/OrganizationsCmdTest.java | 3 +-- .../cli/participants/ParticipantsCmdTest.java | 3 +-- .../tower/cli/pipelines/PipelinesCmdTest.java | 3 +-- .../PipelineSchemaCmdTest.java | 3 +-- .../seqera/tower/cli/runs/MetricsCmdTest.java | 3 +-- .../io/seqera/tower/cli/runs/RunsCmdTest.java | 3 +-- .../io/seqera/tower/cli/runs/TaskCmdTest.java | 3 +-- .../seqera/tower/cli/runs/TasksCmdTest.java | 3 +-- .../tower/cli/secrets/SecretsCmdTest.java | 3 +-- .../shared/ComputeEnvExportFormatTest.java | 3 +-- .../tower/cli/studios/StudiosCmdTest.java | 3 +-- .../seqera/tower/cli/teams/TeamsCmdTest.java | 3 +-- .../cli/teams/members/TeamMembersCmdTest.java | 3 +-- .../tower/cli/utils/TaskExitMixinTest.java | 3 +-- .../cli/workspaces/WorkspacesCmdTest.java | 3 +-- 473 files changed, 485 insertions(+), 958 deletions(-) diff --git a/src/main/java/io/seqera/tower/cli/Tower.java b/src/main/java/io/seqera/tower/cli/Tower.java index e2daa496..4cf2f248 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 96edd048..93204e1d 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 2c1c50ce..1cdddc02 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 94e247bd..116b5767 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 5271c9d3..a51b118d 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 1fac635a..21e09a4c 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 d17a240c..7fcfd17d 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 91fb6284..58e57590 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 153d1f90..d802cd21 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 c72a6233..f9bb73d0 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 b14de6b7..5b5ab3bb 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 1f22d2c6..8f8ffe06 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 b29f0b7e..2efc77e7 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 c2d693a0..ed8a99a6 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 250d7848..decb9b5a 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 f54cec9b..450f8218 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 d684935e..7fd2fcd5 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 91dab138..ade2bcc8 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 f1c1cf32..3aa3d912 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 d643d91f..637d3d23 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 e1899c87..9424be4e 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 4d8dad9b..abf57daf 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 8fa8956e..569a7adf 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 9b7588c1..d7808761 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 604e817d..5ec61a0b 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 dfaa1ce4..cbec5379 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 137198c1..41c32ffd 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 817cdcdf..09ea7aae 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 2c38206e..c6fadf4b 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 4d85d54b..23fe8f73 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 0f9af828..d8c4a105 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 a93e3e92..47548526 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 7e472a80..b26cb014 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 270f7dd1..f476f2d4 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 2ccbf5f2..3a124c79 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 fe560274..c753546f 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 862cc17a..f890cada 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 479dee51..d657101a 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 dac05204..b8637739 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 ac3b9b21..d40d647a 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 27e710ec..b17cd9f1 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 12340a99..07332299 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 408c3395..c3773ecc 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 41cb4f3b..46a1bd1a 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 9fff0b6a..6e0a3e5d 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 4af3eb5a..01635f0e 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 69995aff..5ddf4b4f 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 549527b6..dd0a562e 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 ed604ca8..80d59ea1 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 87a6146a..9782c6dc 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 8b972f59..096be9a9 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 ae41cce4..e54a60fd 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 623b0102..9435e161 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 e82f263f..b8e679e3 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 7056369a..02bccbc6 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 b52021c4..d1a7d340 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 7fc2d695..4feebc47 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 889183de..e788bae5 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 a2406e13..0ead9c86 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 6ba97c17..9294adad 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 ac9121ee..8402fdd5 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 c8aec495..20f57e21 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 7c617fcc..e70534ab 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 330f6ce3..7d26d45d 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 d5ea7c76..0e597045 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 1c11fa3d..9289f6d6 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 77c39b53..2843cf29 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 3a7c00b2..17a2d447 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 ecf044b7..a4a898d8 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 4942e79e..82c67dc2 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 bf99ef37..1d199436 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 6d2136c8..650a0bf5 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 5747b80b..4b01de24 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 301f896b..083c24af 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 46a01e3a..5602d5f6 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 2a226f40..da9fe318 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 3066777d..8e786f65 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 f1140604..03c47a62 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 ff9b2aeb..5af06b7f 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 42d04d02..fb0b5478 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 ba8879b6..881d9bf9 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 d2f859cc..cde4f841 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 5d25c1ca..86f9f1e6 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 1776c735..3412ea5c 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 2f2c3311..7ed1a151 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 18db3acd..0eff6301 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 d666e819..9e127643 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 fb9e95f6..497627e3 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 15dc3cfe..1a802f03 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 cb7c50b1..96823076 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 e082d791..10800984 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 85854aca..9ef64ab3 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 ea014cc0..5add31d9 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 26736007..2b75d601 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 6607a9de..29040dd5 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 85eafe04..ce338417 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 0af6fc59..a4caa786 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 cb2fa167..3c872e78 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 69b850e8..f42a3d17 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 59c2c99a..a80d5dc1 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 c59a615b..6dbba135 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 74b4fa29..fd64f6b7 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 f1412320..bbc8c700 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 b150183f..2da5c153 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 dda24159..5858d04a 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 0ba0e160..0f68f153 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 f525b53f..668fbbdc 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 4914141d..ed9f2286 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 03468d0a..be78bed4 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 779da851..e6e23401 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 51779e27..003010f3 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 28777454..d75d5dfb 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 8c5f4a4a..05cc3a74 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 86451b82..6ce3b0a3 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 1b983442..169fb46f 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 0a7055bf..8c732a4c 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 b9c895e6..e7e87e5e 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 c7711afe..876e532d 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 d8f9a3b8..18aa0f76 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 8c75bb2a..2102c108 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 16f25307..912e29a5 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 512e3bef..cb83c676 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 14123524..13fdc6cb 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 08067d78..ce11ae9f 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 4a033bc8..c4deb7c5 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 18781fed..239ca219 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 a1a96d30..b4701852 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 3a8d8ac0..fdfc282a 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 1df9ef01..b94b77c1 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 95826e8c..47df0e72 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 bc04d036..ecd021a6 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 62db1331..c83a10f5 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 4c806d8b..edab5a67 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 773bd846..2059abf6 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 44e0cef6..af17f22c 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 d37a95c8..dd99a3dd 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 df23e683..421742fc 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 6075339e..3bb67004 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 826e6b98..9a9f277e 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 1a8d0748..afcc3183 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 d2cfc1de..5b41a4f9 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 b170e7f5..6bfd6362 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 4a2f94d2..9377f471 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 683c0149..cce755fe 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 b8ba1cfa..90b55036 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 e912b932..95253624 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 1414182e..7819d3d5 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 c03dad8d..1df8b897 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 e4158244..6147649a 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 1079320d..4664ad3f 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 fd81e2a1..a1b752dd 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 ecf7b684..3070c12d 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 f3a8b528..d125aaeb 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 2865f120..c7f7c365 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 d406850e..ae7d0833 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 20f7ed47..fb390f78 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 85cfd94d..ab6b4dbf 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 1e08323a..fb89a957 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 d85aab43..1897bd52 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 ce631648..6530e64d 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 f9208c38..80e5ed8c 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 4d2f710f..ad911ce7 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 61a4e9ab..107b8f94 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 bb45ecd1..7633d50d 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 44e4cd5a..f860f6f4 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 f122dc26..09d84302 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 8a2009fd..6b19611b 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 550760f6..f9f307f5 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 ea7e7f28..340d4aab 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 484e0c82..3990f125 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 8f53d8b4..3875801c 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 32925b40..d7fafe24 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 460598f3..5c422061 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 ed62e6f2..6cce9031 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 d8a099fd..3a2ea652 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 858f27db..0a2aead4 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 deaabb21..72f2c78b 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 e83e5d72..0e68f7a1 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 fef9443d..9279f77c 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 cd00eb4b..6fc00c47 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 4e5b5ade..9443de15 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 bee2d3c3..2740d10e 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 98b349af..f2663303 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 45255b02..7d425ff4 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 ea6c2cfd..1c5df46b 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 88544417..4a514d76 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 39ee1ff9..d2978322 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 8e50d15c..5b188dbc 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 7611981c..080c0ffa 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 4d4124f6..64690731 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 734a848d..e9e0712a 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 46676944..ecafa2be 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 400bb447..02750192 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 54184e05..7a79971f 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 6e0a8436..b1658415 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 3996ef92..3c6dcf5e 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 6fac5878..ed605e93 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 ebe0438f..abe922e3 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 14679ae7..4c059589 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 438f953d..b6412770 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 3af21a29..14fce577 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 c53d6095..51a42661 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 b73961d6..67fb615f 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 beb2d9c5..5fead943 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 ed00e1ea..53891eba 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 8ac6a48e..227a830c 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 b47d6536..960eaf29 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 3edd2197..95956cbe 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 af90ca92..6f4a922b 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 b3ee09f7..26612a0c 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 da8a4a27..314cc0f3 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 4a7804a7..5a9061c1 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 6632c3f9..5a974b83 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 93c52a21..751a4c93 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 3b8c6cf1..4f584442 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 3415a814..ed364c65 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 0e4ab694..e3da1786 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 c7a6419c..c9a0d5bc 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 095f1e7c..f864f490 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 afbe06ab..59a501b1 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 42b72f21..bb3cab0f 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 97e8ad34..c7c0618f 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 e5c51b73..becede54 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 3fba126e..61bfb328 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 7d752ba2..93060136 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 b53b8468..e14460d7 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 2969af9b..1af0524d 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 f2a889fb..940dd301 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 d7ce8181..b2d17cd0 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 2f7deb37..9c59f5c7 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 da193110..78035aa0 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 b96a00e8..e966804b 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 2557d897..180f6354 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 69d8470a..62a4a83a 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 2f0c28a0..e8dcfb20 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 a8611604..1581a70b 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 c7c610f4..045a5671 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 4b4fd4b4..5be2e887 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 dd2ee689..2c4bdcfa 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 f7a5ba9a..c58efac5 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 e61fc7d4..73cfe362 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 5e96737d..67bed037 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 232cfeee..6bca0e31 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 c2c1cf8d..a4292198 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 bc9c4d77..af12b5b0 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 cefd8394..8cb535ea 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 33b0d707..af698158 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 4c3bc39b..c60ca2eb 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 1c8ea7f6..e45f278c 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 c779be7f..2bed95d7 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 a421bf3b..73e2d4ac 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 a71b151f..a2a3ecd8 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 6a0de114..ddbd12ab 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 9a74057a..ba4305a6 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 74d87c54..8b637c70 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 f61889fa..b736603d 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 9dd85d63..b45e373e 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 501850ef..eb240897 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 53a92ba4..90dc4e1e 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 5976a713..1c0c13ff 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 ca0f1043..f9a0389c 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 79ccae12..e8c55b3e 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 8bddda24..2a2f2112 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 f93b3a23..14a8aa16 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 5fe2f8b3..3c7189a1 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 eac1b453..b4b92394 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 0d49d976..39208e82 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 f2bdd9cf..a05a1658 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 ea0da649..52aee7fd 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 9f877cee..bc8e12f0 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 4f554778..6a8d035d 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 b218fb9a..3e12b0a2 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 5923cc06..e3428002 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 a9abf152..5a631fa5 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 e7851f09..8f37913c 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 4ca691cb..9dbaa635 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 5a9557ad..544d1d9d 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 bf10496c..81593170 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 243ad60e..4a2e9381 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 0e33d57c..cf63a3f8 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 c3c4467e..7bfd8bd9 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 5987ebd7..34cded3c 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 41bb3dc1..9f586645 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 71e0aa52..6aecc0f9 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 5bbd709f..9b6aed04 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 a413aaa7..a631a709 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 e7c28795..a9f3400f 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 7d304ab3..44c3a149 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 a6c9670d..d4f9ed74 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 90a1a817..6c51fe6c 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 d4c004f4..de133820 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 e32b47fb..1f476317 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 dca18c85..a877367c 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 b15f4191..cb0f826d 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 a64f755f..b9ba9b7c 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 b79e3f76..c7e1949c 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 76656560..d1d6a748 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 9dd4b9ec..649e6664 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 03834222..32b1dd37 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 f4d1019e..09c1f4a4 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 acec6263..65f3935d 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 7ecd80a3..988ec560 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 75719cdc..3e055821 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 f3ce9744..1e3e39f9 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 66b5865d..6e39a591 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 87f8a643..14fcf246 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 1884369d..b229bc22 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 4487ed7a..6a2d1696 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 10baa22a..a9b040a9 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 1118eb84..49809f0c 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 8d25a448..eb0c70ed 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 4c30586f..a556359d 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 0014caf9..c615dabf 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 dd979292..2f818159 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 174f5373..6a08ada6 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 051b6e43..fe2e8d10 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 2a5ad162..dc881079 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 448efb9f..497820fd 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 45e215e0..d59def13 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 799a6dbc..f3a5e4d9 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 45c32661..f7d3105f 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 bb5dc285..9155a47a 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 ed86ef61..168375a9 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 5e97ab37..c8ecac97 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 1515bd49..5d356c33 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 2f2c5f5c..fd850caa 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 2b8daab3..3327babb 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 c68c18d4..210a0ea4 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 4e64526f..9ac47cb5 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 dd132d54..81652612 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 20e54d5e..8702bb91 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 d17f9474..5e8405fb 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 1a93f892..5c6af41d 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 cd357327..2b77d823 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 590d7f12..c3186885 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 e676350a..931b7e0d 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 8a6ff307..7878fc69 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 bd8ec3cc..ec1d748c 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 930ad84d..ce481342 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 72d65d06..6b137bd5 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 70be2681..27cbbd86 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 e2a7e369..68818eea 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 71058b5d..b745cbdd 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 a70f803c..ca48fdaf 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 3f9479b4..122d2dcf 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 f13c8118..768f7022 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 90619997..cb29184b 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 1744fcce..079100b4 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 05d458f7..ed93e4da 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 244a8040..24418293 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 8e440d0e..2531256e 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 26030035..f889397f 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 8ca7dcc1..6cefe5c1 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 9f8ef402..483e7acf 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 801e1ef2..fd4edebb 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 d6949cc5..5dede93b 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 d78d4bf5..ac7dd8e3 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 e8b3acb8..6a090bab 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 98530459..b764b2a6 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 21a0867a..a560f254 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 8146736f..4160a891 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 520e27cf..918d00e6 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 8eeaca3c..74baffbc 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 859b20bb..7290d960 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 57d84500..f7e5acd2 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 a22b224c..009680be 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 559f0458..f60119b3 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 b1101ec0..f3452bda 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 2a14f54a..40d3ce38 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 4576bdc7..0ca1ce78 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 1f6ca8eb..4d4fd0fb 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 af86e6dd..4ce1420f 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 cea20b30..97db9ad8 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 e1a9aff4..c1f92c68 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 f1407771..903ae1d1 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 987b30a2..521fdd34 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 0b84b206..3defc0d5 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 b042aee8..37203653 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 de7221f3..dc413c8f 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 65e0c818..0000010c 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 24a5a549..e96e89ee 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 b59edaff..70bfafe7 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 ebd0ba70..c74a53c2 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 2dce9355..5b7673ac 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 94bb1d5e..a3cf41e3 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 f9e44d15..9bbc53e0 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 39549f1b..301b66ed 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 c9d19b4b..6d190277 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 251d1a07..54f17223 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 fdb4f3f8..33afdc47 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 e2fc7a14..dbc8f0c8 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 291f2714..05c77484 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 4b28405b..3ead8e0b 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 ec0d37aa..3012b58e 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 7481a702..4789272a 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 1f6383af..d9d2d81f 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 c3d7699d..c4c47532 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 953e0bbc..5a68b923 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 760bd15d..25978a73 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 e9d5d7fa..abe02eca 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 9a103050..3eecd7ba 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 ce924584..9dd4e920 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 8009401d..f1e442d3 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 d3523b7b..e799ad5a 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 819426d5..b78dc3bf 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 a51b192d..a521ce72 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 5836f918..6f55d410 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 18e2902d..815af4fc 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 3640db92..2631f062 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 f833ae89..98c27b8f 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 43375f0b..a5ddbed7 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 78724038..934f3996 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 6d097ba9..ee952761 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 24b4e04b..efbc7a86 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 992790d4..36695def 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 c4e8bbcb..45641b41 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 2fe6f27e..fd2a92da 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 2d93317e..791bd2a7 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 08dd721d..ab2a3768 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; diff --git a/src/test/java/io/seqera/tower/cli/LaunchCmdTest.java b/src/test/java/io/seqera/tower/cli/LaunchCmdTest.java index 8e07a84f..6ce9dafe 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 8ce1dbe0..e5c12449 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 54c88e88..aee4faf1 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 06826b4a..10f30240 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 8b9deb43..cd6a15d1 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 30c636ce..b5efa55e 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 f3f6f22f..33ad8d88 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 d4f24ef7..5a450d78 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 1f1dfe8e..75ca2edb 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 7fc1c4d8..f30e40e8 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 ffe0f977..a2e3312a 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 e7a49313..cf72bd70 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 ccd21a01..8822e589 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 b22d58b4..28cfc889 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 2f6cfe3f..a4e690b1 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 f81bbc2f..79ecb67c 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 13f69552..8b9310ea 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 0751986c..81bae41e 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 c0ab7af6..496f781c 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 f468836a..cbf854dc 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 99ab4ee4..2bc20f7d 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 35fef2de..f8776ffd 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 1625a7fb..351b046b 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 90e04ab2..943ef6b3 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 42194e04..8c124adc 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 5b3c0dfe..057e8dd5 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 e550bd9f..599a413a 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 50fa64c3..607a78e2 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 b94e2f2d..1a77dd78 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 e2e2e5f8..bdcb6f83 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 1de8a107..9f4d3256 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 978dfe9f..61868ff7 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 de18c655..b06b3b63 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 44672d78..3296a77e 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 09f553d0..80f6979d 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 53213770..5906e978 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 6062d854..8b20445f 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 17adfef1..4786a9f5 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 00c36f1e..c4fa3518 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 74de7869..e2838d56 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 4c859412..3af52b68 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 8aae1ae5..787b9145 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 0e0a5f49..f0e01ffa 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 60515b91..360526ca 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 a19d3b36..dc33d286 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 3edcf148..2d697f5b 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 6aa52d91..f69924f0 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 e13558d2..e8adb103 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 36444c38..0137fd5a 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 6f5168c6..f3ed4146 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 0cd16195..2667d650 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 4553d938..1e1bef97 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 03024d92..213f2291 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 f3ac42c9..33443673 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; From ed39c425f1b25dcf624c84882904b9766ae91cc7 Mon Sep 17 00:00:00 2001 From: Cristian Ramon-Cortes Date: Fri, 20 Feb 2026 10:18:45 +0100 Subject: [PATCH 08/14] fix: Revert picocli to version 4.6.3 due to an annotation processor regression [COMP-1266] --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 8b6519b7..1ab56ec6 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -10,7 +10,7 @@ junitVersion = "5.12.2" licenserVersion = "2.2.2" logbackVersion = "1.5.32" mockserverVersion = "5.15.0" -picocliVersion = "4.7.7" +picocliVersion = "4.6.3" shadowVersion = "9.3.1" slf4jVersion = "2.0.17" towerJavaSdkVersion = "1.107.0" From ec440458ca811246a13a187663ead2aa5c1f98a4 Mon Sep 17 00:00:00 2001 From: Cristian Ramon-Cortes Date: Fri, 20 Feb 2026 10:25:00 +0100 Subject: [PATCH 09/14] fix: Update JAVA target version to 21 due to HttpClient autoclosable feature [COMP-1266] --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 3388dd53..da2f5c6d 100644 --- a/build.gradle +++ b/build.gradle @@ -125,7 +125,7 @@ tasks.register('buildInfo') { } tasks.named('compileJava') { - options.release = 11 + options.release = 21 options.compilerArgs += ["-Aproject=${project.name}"] dependsOn tasks.named('buildInfo') } From baf7e74d3c46c0a4bbb1e315b5a7339f72f6330f Mon Sep 17 00:00:00 2001 From: Cristian Ramon-Cortes Date: Fri, 20 Feb 2026 10:27:19 +0100 Subject: [PATCH 10/14] feat: Update platform API version to 1.109.0 [COMP-1266] --- VERSION-API | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION-API b/VERSION-API index 14e18ec6..b0b1c19c 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 From de933a95060ef1c909b14f382a6ef1f20a2a3feb Mon Sep 17 00:00:00 2001 From: Cristian Ramon-Cortes Date: Fri, 20 Feb 2026 10:27:32 +0100 Subject: [PATCH 11/14] feat: Update CLI version to 0.22.0 [COMP-1266] --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 18f29586..96864028 100644 --- a/VERSION +++ b/VERSION @@ -1,3 +1,3 @@ -0.21.0 +0.22.0 From 12842eb24c6fc88510a4a07c9de5a3065e7b36c3 Mon Sep 17 00:00:00 2001 From: Cristian Ramon-Cortes Date: Fri, 20 Feb 2026 10:29:21 +0100 Subject: [PATCH 12/14] fix: Add explicit jUnit runtime classpath [COMP-1266] --- build.gradle | 1 + gradle/libs.versions.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index da2f5c6d..de3367e1 100644 --- a/build.gradle +++ b/build.gradle @@ -51,6 +51,7 @@ dependencies { testImplementation(libs.junitJupiterApi) testImplementation(libs.junitJupiterParams) testRuntimeOnly(libs.junitJupiterEngine) + testRuntimeOnly(libs.junitPlatformLauncher) } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 1ab56ec6..79b44de1 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -29,6 +29,7 @@ jerseyMediaMultipart = { group = "org.glassfish.jersey.media", name = "jersey-me 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" } From a21db0f5d50ddebc9c657cdf65c4e1b7c5257df7 Mon Sep 17 00:00:00 2001 From: Cristian Ramon-Cortes Date: Fri, 20 Feb 2026 13:21:56 +0100 Subject: [PATCH 13/14] fix: Expected tower API version after upgrade [COMP-1266] --- src/test/java/io/seqera/tower/cli/InfoCmdTest.java | 4 ++-- src/test/resources/runcmd/info/service-info.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/java/io/seqera/tower/cli/InfoCmdTest.java b/src/test/java/io/seqera/tower/cli/InfoCmdTest.java index ab2a3768..693ee3f7 100644 --- a/src/test/java/io/seqera/tower/cli/InfoCmdTest.java +++ b/src/test/java/io/seqera/tower/cli/InfoCmdTest.java @@ -56,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"); @@ -86,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/resources/runcmd/info/service-info.json b/src/test/resources/runcmd/info/service-info.json index 587205da..a78a8c19 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", From 72be9a770c612a476c525edae9762a6ee4376cb1 Mon Sep 17 00:00:00 2001 From: Cristian Ramon-Cortes Date: Fri, 20 Feb 2026 14:01:16 +0100 Subject: [PATCH 14/14] fix: Revert to graal 0.10.6 due to windows incompatibility [COMP-1266] --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 79b44de1..8f659ecd 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -2,7 +2,7 @@ classgraphVersion = "4.8.180" commonsCompressVersion = "1.28.0" commonsIoVersion = "2.21.0" -graalvmNativeVersion = "0.11.1" +graalvmNativeVersion = "0.10.6" jakartaAnnotationVersion = "3.0.0" javaxAnnotationVersion = "1.3.2" jerseyVersion = "2.47"