|
@@ -220,6 +220,31 @@
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
|
|
|
+
|
|
|
+ <profiles>
|
|
|
+ <profile>
|
|
|
+ <id>sit</id>
|
|
|
+ <properties>
|
|
|
+ <spring.active>sit</spring.active>
|
|
|
+ </properties>
|
|
|
+ <activation>
|
|
|
+ <activeByDefault>true</activeByDefault>
|
|
|
+ </activation>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <id>pre</id>
|
|
|
+ <properties>
|
|
|
+ <spring.active>pre</spring.active>
|
|
|
+ </properties>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <id>prd</id>
|
|
|
+ <properties>
|
|
|
+ <spring.active>prd</spring.active>
|
|
|
+ </properties>
|
|
|
+ </profile>
|
|
|
+ </profiles>
|
|
|
+
|
|
|
<build>
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
<plugins>
|
|
@@ -238,6 +263,17 @@
|
|
|
<skipTests>true</skipTests>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-resources-plugin</artifactId>
|
|
|
+ <version>3.1.0</version>
|
|
|
+ <configuration>
|
|
|
+ <delimiters>
|
|
|
+ <delimiter>@</delimiter>
|
|
|
+ </delimiters>
|
|
|
+ <useDefaultDelimiters>false</useDefaultDelimiters>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
</plugins>
|
|
|
<resources>
|
|
|
<resource>
|