Fix initializr-service finalName

This commit makes sure that the generated initializr-service app does
not contain a version number. That way, it is easier to reuse the same
command to push the app, regardless of the current version.
This commit is contained in:
Stephane Nicoll
2016-07-17 10:08:54 +02:00
parent ae172f4a57
commit 2632d69036
2 changed files with 2 additions and 1 deletions

View File

@@ -240,7 +240,7 @@ Once the jar has been created, you can push the application:
[indent=0]
----
$ cf push your-initializr -p target/initializr-service-1.0.0.BUILD-SNAPSHOT
$ cf push your-initializr -p target/initializr-service.jar
----
== License

View File

@@ -27,6 +27,7 @@
</dependencies>
<build>
<finalName>initializr-service</finalName>
<plugins>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>