diff options
author | Jimmy Forsyth <jf2512@att.com> | 2019-09-05 09:34:58 -0400 |
---|---|---|
committer | Jimmy Forsyth <jf2512@att.com> | 2019-09-05 09:37:56 -0400 |
commit | 98624347bcadd2056a48b1062869f952959168ab (patch) | |
tree | 1b8ca2223408114a4e68ddfc4c17aec0b7996362 /pom.xml | |
parent | 7262f36b73f3c1ce982a9914760be5e3f63534ea (diff) |
Fix docker build job
Issue-ID: AAI-2579
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
Change-Id: I864e9409e189455f965eb5a77a1703fcda9256b8
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 43 |
1 files changed, 35 insertions, 8 deletions
@@ -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> |