Rename from financer to financer-server
In fact this is the server part of the financer app, so the new name is more fitting. Also adjust the group ID accordingly, so -server and -client can reside in the same group. Also add property parallelDeploymentVersion as the String version comparison of the context version is a bit quirky on Tomcat.
This commit is contained in:
16
pom.xml
16
pom.xml
@@ -11,12 +11,12 @@
|
|||||||
<relativePath/>
|
<relativePath/>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<groupId>de.77zzcx7</groupId>
|
<groupId>de.77zzcx7.financer</groupId>
|
||||||
<artifactId>financer</artifactId>
|
<artifactId>financer-server</artifactId>
|
||||||
<version>1-SNAPSHOT</version>
|
<version>1-SNAPSHOT</version>
|
||||||
<packaging>${packaging.type}</packaging>
|
<packaging>${packaging.type}</packaging>
|
||||||
|
<description>The server part of the financer application - a simple app to manage your personal finances</description>
|
||||||
<name>financer</name>
|
<name>financer-server</name>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
@@ -25,6 +25,10 @@
|
|||||||
<java.version>1.9</java.version>
|
<java.version>1.9</java.version>
|
||||||
<packaging.type>jar</packaging.type>
|
<packaging.type>jar</packaging.type>
|
||||||
<activeProfiles>hsqldb,dev</activeProfiles>
|
<activeProfiles>hsqldb,dev</activeProfiles>
|
||||||
|
<!-- Property to define the parallel deployment version.
|
||||||
|
See e.g. https://tomcat.apache.org/tomcat-8.5-doc/config/context.html
|
||||||
|
Should be the same as the project.version but padded with zeros to six digits. -->
|
||||||
|
<parallelDeploymentVersion>000001</parallelDeploymentVersion>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
@@ -97,7 +101,7 @@
|
|||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<finalName>financer</finalName>
|
<finalName>${project.artifactId}</finalName>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
@@ -163,7 +167,7 @@
|
|||||||
<activeProfiles>postgres</activeProfiles>
|
<activeProfiles>postgres</activeProfiles>
|
||||||
</properties>
|
</properties>
|
||||||
<build>
|
<build>
|
||||||
<finalName>financer##${project.version}</finalName>
|
<finalName>${project.artifactId}##${parallelDeploymentVersion}</finalName>
|
||||||
</build>
|
</build>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|||||||
Reference in New Issue
Block a user