summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml31
1 files changed, 28 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index 0a2de84..aa41a07 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,15 +27,32 @@
</modules>
<parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.3.0.RELEASE</version>
+ <groupId>org.onap.oparent</groupId>
+ <artifactId>oparent</artifactId>
+ <version>3.2.0</version>
</parent>
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-dependencies</artifactId>
+ <version>2.3.0.RELEASE</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
<properties>
<java.version>11</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format>
+ <skipDockerPush>true</skipDockerPush>
+ <docker.registry>nexus3.onap.org:10003</docker.registry>
+ <docker-maven-plugin.version>0.31.0</docker-maven-plugin.version>
+ <docker-image.namespace>onap</docker-image.namespace>
+ <docker-image.name.prefix>integration/usecase/a1-policy-enforcement</docker-image.name.prefix>
<lombok.version>1.18.8</lombok.version>
<mariadb.version>2.6.0</mariadb.version>
@@ -76,6 +93,14 @@
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
<plugin>
+ <groupId>io.fabric8</groupId>
+ <artifactId>docker-maven-plugin</artifactId>
+ <version>${docker-maven-plugin.version}</version>
+ <configuration>
+ <useColor>true</useColor>
+ </configuration>
+ </plugin>
+ <plugin>
<artifactId>maven-resources-plugin</artifactId>
</plugin>
</plugins>