|
|
|
@ -7,7 +7,7 @@
|
|
|
|
|
<groupId>i3plus.core</groupId>
|
|
|
|
|
<artifactId>i3plus-core</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<version>1.0-DEV-SNAPSHOT</version>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
<modules>
|
|
|
|
|
<module>modules/i3plus-core-api</module>
|
|
|
|
|
<module>modules/i3plus-core-apiservice</module>
|
|
|
|
@ -344,6 +344,36 @@
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
<finalName>${project.artifactId}-${profileActive}-${project.version}</finalName>
|
|
|
|
|
</build>
|
|
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>dev</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<profileActive>DEV</profileActive>
|
|
|
|
|
</properties>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>test</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<profileActive>TEST</profileActive>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>docker</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<profileActive>DOCKER</profileActive>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>prod</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<profileActive>PROD</profileActive>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
|
|
</project>
|