aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorDmitry Puzikov <dmitry.puzikov@tieto.com>2019-08-22 15:30:56 +0200
committerDmitry Puzikov <dmitry.puzikov@tieto.com>2019-08-29 16:50:06 +0200
commitf94606aea2ac4a18028865c47dcd53b72a6d8c89 (patch)
tree8f8d2dd4aee122572952b7ba1b6cbc6c71edf2e0 /pom.xml
parente6606bcaa0357a41a35983aea91c1b28f05469c6 (diff)
Fixed project version parsing
Change-Id: I488b42b187e78db90e862ca8683bb361fa1d9bf6 Issue-ID: INT-1152 Signed-off-by: Dmitry Puzikov <dmitry.puzikov@tieto.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml43
1 files changed, 35 insertions, 8 deletions
diff --git a/pom.xml b/pom.xml
index 43b920a..abbd898 100644
--- a/pom.xml
+++ b/pom.xml
@@ -41,19 +41,46 @@
<properties>
<nexusproxy>https://nexus.onap.org</nexusproxy>
+ <!-- docker related properties -->
+ <docker.fabric.version>0.31.0</docker.fabric.version>
+ <aai.docker.version>1.0.0</aai.docker.version>
+ <aai.docker.namespace>onap</aai.docker.namespace>
+ <aai.base.image>alpine</aai.base.image>
+ <aai.base.image.version>1.6.0</aai.base.image.version>
+ <aai.build.directory>${project.build.directory}/${project.artifactId}-build/</aai.build.directory>
+ <!-- This will be used for the docker images as the default format of maven build has issues -->
+ <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
</properties>
+ <profiles>
+ <profile>
+ <id>docker</id>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <version>3.0.0</version>
+ <executions>
+ <execution>
+ <phase>pre-clean</phase>
+ <id>parse-version</id>
+ <goals>
+ <goal>parse-version</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+ </profile>
+ </profiles>
+
<build>
<plugins>
<plugin>
- <groupId>com.spotify</groupId>
- <artifactId>docker-maven-plugin</artifactId>
- <version>0.4.11</version>
- <configuration>
- <skipDockerBuild>true</skipDockerBuild>
- </configuration>
- </plugin>
- <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
</plugin>