Consolidate version numbers to 2.0.0(-SNAPSHOT)

Partially resolves #156
This commit is contained in:
Chris Bono
2022-01-24 09:18:13 -06:00
committed by GitHub
parent b9f2591ebf
commit 96c487a820
105 changed files with 169 additions and 277 deletions

View File

@@ -2,6 +2,6 @@ FROM java:8-alpine
ARG JAR_FILE
ADD target/${JAR_FILE} taskapp-1.0.0.BUILD-SNAPSHOT.jar
ADD target/${JAR_FILE} taskapp-2.0.0-SNAPSHOT.jar
ENTRYPOINT ["java", "-jar", "/taskapp-1.0.0.BUILD-SNAPSHOT.jar"]
ENTRYPOINT ["java", "-jar", "/taskapp-2.0.0-SNAPSHOT.jar"]

View File

@@ -20,4 +20,4 @@ To build the docker image:
```
=== Running the Application
java -jar target/transition-sample-1.0.0.BUILD-SNAPSHOT.jar --taskapp.exitMessage=<yourexitmessage>
java -jar target/transition-sample-2.0.0-SNAPSHOT.jar --taskapp.exitMessage=<yourexitmessage>

View File

@@ -11,7 +11,7 @@
</parent>
<groupId>io.spring</groupId>
<artifactId>transition-sample</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>2.0.0-SNAPSHOT</version>
<name>Transition Sample Application</name>
<description>Returns exit message of the exitMessage property</description>