From 3197c94be7c8a5176d39ccc98f3e053d31bc6524 Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Fri, 28 Jan 2022 09:27:06 +0000 Subject: [PATCH] Switch main from 3.0.0-SNAPSHOT to 2.1.0-SNAPSHOT - Relates #356 --- README.adoc | 3 +++ pom.xml | 18 +++++++++--------- spring-shell-autoconfigure/pom.xml | 2 +- spring-shell-core-test-support/pom.xml | 2 +- spring-shell-core/pom.xml | 2 +- spring-shell-dependencies/pom.xml | 16 ++++++++-------- spring-shell-docs/pom.xml | 2 +- spring-shell-jcommander-adapter/pom.xml | 2 +- spring-shell-samples/pom.xml | 2 +- spring-shell-standard-commands/pom.xml | 2 +- spring-shell-standard/pom.xml | 2 +- spring-shell-starter/pom.xml | 2 +- spring-shell-table/pom.xml | 2 +- spring-shell-test-samples/pom.xml | 2 +- 14 files changed, 31 insertions(+), 28 deletions(-) diff --git a/README.adoc b/README.adoc index 8661815c..0f8b69a0 100644 --- a/README.adoc +++ b/README.adoc @@ -3,6 +3,9 @@ Spring Shell 3 is a work to solely depend on Spring Boot 2.x and not trying to keep any backward compatibility with older Spring Shell 1.x nor Spring Boot 1.x. +IMPORTANT: We've changed main branch from `3.0.0-SNAPSHOT` to `2.1.0-SNAPSHOT`, + for more info see issue #356 + == Building ``` ./mvnw package diff --git a/pom.xml b/pom.xml index 6e912bed..126dd3ea 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.springframework.shell spring-shell-parent Spring Shell Parent POM - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT pom @@ -45,42 +45,42 @@ org.springframework.shell spring-shell-core - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT org.springframework.shell spring-shell-core-test-support - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT org.springframework.shell spring-shell-standard - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT org.springframework.shell spring-shell-standard-commands - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT org.springframework.shell spring-shell-jcommander-adapter - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT org.springframework.shell spring-shell-starter - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT org.springframework.shell spring-shell-table - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT org.springframework.shell spring-shell-autoconfigure - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT org.jline diff --git a/spring-shell-autoconfigure/pom.xml b/spring-shell-autoconfigure/pom.xml index f00295d3..c043e2a1 100644 --- a/spring-shell-autoconfigure/pom.xml +++ b/spring-shell-autoconfigure/pom.xml @@ -9,7 +9,7 @@ org.springframework.shell spring-shell-parent - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT diff --git a/spring-shell-core-test-support/pom.xml b/spring-shell-core-test-support/pom.xml index 3bfae2ba..6652ab93 100644 --- a/spring-shell-core-test-support/pom.xml +++ b/spring-shell-core-test-support/pom.xml @@ -9,7 +9,7 @@ org.springframework.shell spring-shell-parent - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT Core API test classes for Spring Shell 2 diff --git a/spring-shell-core/pom.xml b/spring-shell-core/pom.xml index eb7b78b0..ce87eba4 100644 --- a/spring-shell-core/pom.xml +++ b/spring-shell-core/pom.xml @@ -9,7 +9,7 @@ org.springframework.shell spring-shell-parent - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT Core API and classes for Spring Shell 2 diff --git a/spring-shell-dependencies/pom.xml b/spring-shell-dependencies/pom.xml index b7926f68..9b8e7bb2 100644 --- a/spring-shell-dependencies/pom.xml +++ b/spring-shell-dependencies/pom.xml @@ -1,7 +1,7 @@ 4.0.0 org.springframework.shell - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT spring-shell-dependencies pom Spring Shell Bill of Materials @@ -11,37 +11,37 @@ org.springframework.shell spring-shell-core - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT org.springframework.shell spring-shell-core-test-support - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT org.springframework.shell spring-shell-standard - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT org.springframework.shell spring-shell-standard-commands - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT org.springframework.shell spring-shell-jcommander-adapter - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT org.springframework.shell spring-shell-starter - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT org.springframework.shell spring-shell-table - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT diff --git a/spring-shell-docs/pom.xml b/spring-shell-docs/pom.xml index 0cd468e7..7bf2c300 100644 --- a/spring-shell-docs/pom.xml +++ b/spring-shell-docs/pom.xml @@ -8,7 +8,7 @@ org.springframework.shell spring-shell-parent - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT Spring Shell reference documentation diff --git a/spring-shell-jcommander-adapter/pom.xml b/spring-shell-jcommander-adapter/pom.xml index 8899b98b..180b6d8b 100644 --- a/spring-shell-jcommander-adapter/pom.xml +++ b/spring-shell-jcommander-adapter/pom.xml @@ -9,7 +9,7 @@ org.springframework.shell spring-shell-parent - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT Adapter classes to allow JCommander type annotations and parsing via Spring Shell 2 diff --git a/spring-shell-samples/pom.xml b/spring-shell-samples/pom.xml index c61d123c..6a0f8917 100644 --- a/spring-shell-samples/pom.xml +++ b/spring-shell-samples/pom.xml @@ -9,7 +9,7 @@ org.springframework.shell spring-shell-parent - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT Examples of using Spring Shell 2 diff --git a/spring-shell-standard-commands/pom.xml b/spring-shell-standard-commands/pom.xml index 76684a2d..2436e049 100644 --- a/spring-shell-standard-commands/pom.xml +++ b/spring-shell-standard-commands/pom.xml @@ -9,7 +9,7 @@ org.springframework.shell spring-shell-parent - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT Standard out-of-the-box shell commands, implemented using the Standard API diff --git a/spring-shell-standard/pom.xml b/spring-shell-standard/pom.xml index b27ceaeb..ab5c61d3 100644 --- a/spring-shell-standard/pom.xml +++ b/spring-shell-standard/pom.xml @@ -9,7 +9,7 @@ org.springframework.shell spring-shell-parent - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT APIs and resolvers for using the standard Spring Shell programming model diff --git a/spring-shell-starter/pom.xml b/spring-shell-starter/pom.xml index 7a40ff7f..33135e96 100644 --- a/spring-shell-starter/pom.xml +++ b/spring-shell-starter/pom.xml @@ -8,7 +8,7 @@ org.springframework.shell spring-shell-parent - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT Starter Dependency for Using Spring Shell diff --git a/spring-shell-table/pom.xml b/spring-shell-table/pom.xml index 7e392fbd..a5d1b011 100644 --- a/spring-shell-table/pom.xml +++ b/spring-shell-table/pom.xml @@ -23,7 +23,7 @@ org.springframework.shell spring-shell-parent - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT Library to Display Fancy ASCII art Tables diff --git a/spring-shell-test-samples/pom.xml b/spring-shell-test-samples/pom.xml index 80366feb..a3a8f464 100644 --- a/spring-shell-test-samples/pom.xml +++ b/spring-shell-test-samples/pom.xml @@ -9,7 +9,7 @@ org.springframework.shell spring-shell-parent - 3.0.0-SNAPSHOT + 2.1.0-SNAPSHOT Examples of unit, functional and integration tests using Spring Shell 2