Consolidate version numbers to 2.0.0(-SNAPSHOT)
Partially resolves #156
This commit is contained in:
@@ -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"]
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user