aboutsummaryrefslogtreecommitdiffstats
path: root/prh-app-server/pom.xml
diff options
context:
space:
mode:
authorwasala <przemyslaw.wasala@nokia.com>2018-03-28 20:08:54 +0200
committerwasala <przemyslaw.wasala@nokia.com>2018-03-28 20:27:13 +0200
commit112044f9d9999f7e1e1871e49aba9ba73ce3959e (patch)
treec211666b1a7368e252096a3a610f3566161599b4 /prh-app-server/pom.xml
parent9292dd2aa89214957fc72980f58026324ca75a4f (diff)
Already addes push Dockerfile image from mvn pov
Change-Id: I4411279c34dd0b6b38e283fdfafa4977e7eb4414 Issue-ID: DCAEGEN2-407 Signed-off-by: wasala <przemyslaw.wasala@nokia.com>
Diffstat (limited to 'prh-app-server/pom.xml')
-rw-r--r--prh-app-server/pom.xml35
1 files changed, 34 insertions, 1 deletions
diff --git a/prh-app-server/pom.xml b/prh-app-server/pom.xml
index a42caa02..8d07fdd6 100644
--- a/prh-app-server/pom.xml
+++ b/prh-app-server/pom.xml
@@ -31,7 +31,11 @@
<artifactId>prh-app-server</artifactId>
<groupId>org.onap.dcaegen2.services.prh</groupId>
<packaging>jar</packaging>
-
+ <properties>
+ <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format>
+ <onap.nexus.dockerregistry.daily>${env.MVN_DOCKERREGISTRY_DAILY}
+ </onap.nexus.dockerregistry.daily>
+ </properties>
<build>
<plugins>
<plugin>
@@ -53,6 +57,31 @@
<mainClass>org.onap.dcaegen2.services.prh.MainApp</mainClass>
</configuration>
</plugin>
+ <!-- This plugin may go away in favor of a custom Dockerfile provided by Carsten and co. -->
+ <plugin>
+ <groupId>com.spotify</groupId>
+ <artifactId>docker-maven-plugin</artifactId>
+ <version>1.0.0</version>
+ <configuration>
+ <imageName>
+ ${onap.nexus.dockerregistry.daily}/onap/${project.groupId}.${project.artifactId}
+ </imageName>
+ <dockerDirectory>docker</dockerDirectory>
+ <resources>
+ <resource>
+ <targetPath>/</targetPath>
+ <directory>${project.build.directory}</directory>
+ <include>${project.build.finalName}.jar</include>
+ </resource>
+ </resources>
+ <imageTags>
+ <imageTag>${project.version}-${maven.build.timestamp}</imageTag>
+ <imageTag>latest</imageTag>
+ </imageTags>
+ <serverId>${onap.nexus.dockerregistry.daily}</serverId>
+ </configuration>
+ </plugin>
+
</plugins>
</build>
<dependencies>
@@ -66,6 +95,10 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</dependency>
+ <dependency>
+ <groupId>com.spotify</groupId>
+ <artifactId>docker-maven-plugin</artifactId>
+ </dependency>
<!-- LOGGING DEPENDENCIES-->
<dependency>