blob: 0a94817fff990aa90782c8decf696a8acf982779 [file] [log] [blame]
wasala961af3e2018-03-27 13:02:10 +02001<?xml version="1.0" encoding="UTF-8"?>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +01002<!--
3 ~ ============LICENSE_START=======================================================
4 ~ PNF-REGISTRATION-HANDLER
5 ~ ================================================================================
deen1985ee146f32020-08-05 17:54:22 +02006 ~ Copyright (C) 2018-2020 NOKIA Intellectual Property. All rights reserved.
Piotr Bocheński2ce68d32019-02-08 13:38:02 +01007 ~ ================================================================================
8 ~ Licensed under the Apache License, Version 2.0 (the "License");
9 ~ you may not use this file except in compliance with the License.
10 ~ You may obtain a copy of the License at
11 ~
12 ~ http://www.apache.org/licenses/LICENSE-2.0
13 ~
14 ~ Unless required by applicable law or agreed to in writing, software
15 ~ distributed under the License is distributed on an "AS IS" BASIS,
16 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 ~ See the License for the specific language governing permissions and
18 ~ limitations under the License.
19 ~ ============LICENSE_END=========================================================
20-->
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020021<project xmlns="http://maven.apache.org/POM/4.0.0"
Michal Kabaje3595ee2019-11-28 12:21:19 +010022 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
wasalaec0cf092018-03-21 14:19:43 +010024 <modelVersion>4.0.0</modelVersion>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020025
wasalaec0cf092018-03-21 14:19:43 +010026 <parent>
27 <groupId>org.onap.oparent</groupId>
28 <artifactId>oparent</artifactId>
Gerard Hickey84c1e632019-07-11 12:50:10 +010029 <version>2.0.0</version>
wasalaec0cf092018-03-21 14:19:43 +010030 <relativePath/>
31 </parent>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020032
wasalaec0cf092018-03-21 14:19:43 +010033 <groupId>org.onap.dcaegen2.services</groupId>
Lusheng Ji44fb1712018-03-21 16:42:36 -040034 <artifactId>prh</artifactId>
deen1985ceac3212020-08-10 15:38:37 +020035 <version>1.5.4-SNAPSHOT</version>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020036
wasala35ee40c2018-05-21 20:57:50 +020037 <name>dcaegen2-services-prh</name>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020038 <description>PNF Registration Handler</description>
wasalab80bcb82018-03-26 15:48:46 +020039 <packaging>pom</packaging>
40
41 <licenses>
42 <license>
43 <name>The Apache Software License, Version 2.0</name>
44 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
45 </license>
46 </licenses>
47
wasalaec0cf092018-03-21 14:19:43 +010048 <properties>
kjaniak7a4bb602020-01-10 14:57:20 +010049 <java.version>11</java.version>
deen1985ee146f32020-08-05 17:54:22 +020050 <spring-boot.version>2.2.4.RELEASE</spring-boot.version>
grabinsk4117c9f2019-06-04 15:18:44 +020051 <spring-cloud.version>Greenwich.SR1</spring-cloud.version>
deen1985ee146f32020-08-05 17:54:22 +020052 <springfox.version>3.0.0</springfox.version>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +010053 <immutables.version>2.7.5</immutables.version>
deen1985ceac3212020-08-10 15:38:37 +020054 <sdk.version>1.4.1</sdk.version>
deen1985ee146f32020-08-05 17:54:22 +020055 <guava.version>29.0-jre</guava.version>
Hansen, Tony (th1395)8d6fec32020-02-11 22:07:14 +000056 <sonar.coverage.jacoco.xmlReportPaths>
57 ${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml
58 </sonar.coverage.jacoco.xmlReportPaths>
wasalaec0cf092018-03-21 14:19:43 +010059 </properties>
wasalab80bcb82018-03-26 15:48:46 +020060
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020061 <modules>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020062 <module>prh-commons</module>
pwielebs0386c752018-12-17 09:49:00 +010063 <module>prh-app-server</module>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020064 </modules>
wasalab80bcb82018-03-26 15:48:46 +020065
wasalaec0cf092018-03-21 14:19:43 +010066 <build>
67 <pluginManagement>
68 <plugins>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020069 <plugin>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-resources-plugin</artifactId>
72 <version>3.1.0</version>
73 <configuration>
74 <encoding>${project.build.sourceEncoding}</encoding>
75 </configuration>
76 </plugin>
wasalaec0cf092018-03-21 14:19:43 +010077 <plugin>
78 <groupId>org.apache.maven.plugins</groupId>
79 <artifactId>maven-compiler-plugin</artifactId>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +010080 <version>3.8.0</version>
wasalaec0cf092018-03-21 14:19:43 +010081 <configuration>
82 <source>${java.version}</source>
83 <target>${java.version}</target>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020084 <encoding>${project.build.sourceEncoding}</encoding>
wasalaec0cf092018-03-21 14:19:43 +010085 <showWarnings>true</showWarnings>
86 <showDeprecation>true</showDeprecation>
87 </configuration>
88 </plugin>
wasalaec0cf092018-03-21 14:19:43 +010089 <plugin>
90 <groupId>org.apache.maven.plugins</groupId>
91 <artifactId>maven-surefire-plugin</artifactId>
92 <version>2.19.1</version>
93 <dependencies>
94 <dependency>
95 <groupId>org.junit.platform</groupId>
96 <artifactId>junit-platform-surefire-provider</artifactId>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +010097 <version>1.1.0</version>
wasalaec0cf092018-03-21 14:19:43 +010098 </dependency>
99 </dependencies>
100 </plugin>
Lusheng Ji6bb4aa22018-04-06 10:26:18 -0400101 <plugin>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +0100102 <groupId>pl.project13.maven</groupId>
103 <artifactId>git-commit-id-plugin</artifactId>
pwielebsb32fb6d2019-07-15 17:25:26 +0200104 <version>3.0.0</version>
105 </plugin>
106 <plugin>
107 <groupId>org.codehaus.mojo</groupId>
108 <artifactId>build-helper-maven-plugin</artifactId>
109 <version>3.0.0</version>
Lusheng Ji6bb4aa22018-04-06 10:26:18 -0400110 </plugin>
wasala44ce56c2018-05-08 13:48:44 +0200111 <plugin>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +0100112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-jar-plugin</artifactId>
pwielebsb32fb6d2019-07-15 17:25:26 +0200114 <version>3.1.2</version>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +0100115 </plugin>
116 <plugin>
pwielebsb32fb6d2019-07-15 17:25:26 +0200117 <groupId>io.fabric8</groupId>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +0100118 <artifactId>docker-maven-plugin</artifactId>
pwielebsb32fb6d2019-07-15 17:25:26 +0200119 <version>0.30.0</version>
wasala96481e02018-05-16 15:17:56 +0200120 </plugin>
wasala2a6eb942018-06-18 11:45:08 +0200121 <plugin>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-deploy-plugin</artifactId>
wasala2a6eb942018-06-18 11:45:08 +0200124 </plugin>
Marcin Migdal4e1b7d32019-01-14 14:31:55 +0100125 <plugin>
126 <groupId>org.apache.maven.plugins</groupId>
127 <artifactId>maven-enforcer-plugin</artifactId>
128 <configuration>
129 <skip>true</skip>
130 </configuration>
131 </plugin>
wasalaec0cf092018-03-21 14:19:43 +0100132 </plugins>
133 </pluginManagement>
wasalaec0cf092018-03-21 14:19:43 +0100134 </build>
wasalab80bcb82018-03-26 15:48:46 +0200135
wasala961af3e2018-03-27 13:02:10 +0200136 <dependencyManagement>
137 <dependencies>
wasalab196f932018-04-17 12:25:54 +0200138 <dependency>
micdzied8e8d8f72018-12-12 14:03:19 +0100139 <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
140 <artifactId>cbs-client</artifactId>
pwielebs0386c752018-12-17 09:49:00 +0100141 <version>${sdk.version}</version>
wasala5fbcb632018-04-18 15:21:56 +0200142 </dependency>
143 <dependency>
micdzied8e8d8f72018-12-12 14:03:19 +0100144 <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
Michal Kabaje3595ee2019-11-28 12:21:19 +0100145 <artifactId>http-client</artifactId>
146 <version>${sdk.version}</version>
147 </dependency>
148 <dependency>
149 <groupId>org.onap.dcaegen2.services.sdk.security</groupId>
150 <artifactId>ssl</artifactId>
pwielebs0386c752018-12-17 09:49:00 +0100151 <version>${sdk.version}</version>
wasalabb314412018-10-16 10:36:59 +0200152 </dependency>
153 <dependency>
micdzied8e8d8f72018-12-12 14:03:19 +0100154 <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
155 <artifactId>dmaap-client</artifactId>
pwielebs0386c752018-12-17 09:49:00 +0100156 <version>${sdk.version}</version>
157 </dependency>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +0100158
wasalab0ef0452018-04-16 09:52:34 +0200159 <dependency>
grabinsk4117c9f2019-06-04 15:18:44 +0200160 <groupId>org.springframework.cloud</groupId>
161 <artifactId>spring-cloud-dependencies</artifactId>
162 <version>${spring-cloud.version}</version>
163 <type>pom</type>
164 <scope>import</scope>
165 </dependency>
166
167 <dependency>
micdzied8e8d8f72018-12-12 14:03:19 +0100168 <groupId>org.springframework.boot</groupId>
169 <artifactId>spring-boot-dependencies</artifactId>
170 <version>${spring-boot.version}</version>
171 <type>pom</type>
172 <scope>import</scope>
wasalab0ef0452018-04-16 09:52:34 +0200173 </dependency>
174 <dependency>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +0100175 <groupId>io.springfox</groupId>
deen1985ee146f32020-08-05 17:54:22 +0200176 <artifactId>springfox-boot-starter</artifactId>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +0100177 <version>${springfox.version}</version>
178 </dependency>
179 <dependency>
180 <groupId>org.immutables</groupId>
181 <artifactId>value</artifactId>
182 <version>${immutables.version}</version>
183 </dependency>
184 <dependency>
185 <groupId>org.immutables</groupId>
186 <artifactId>gson</artifactId>
187 <version>${immutables.version}</version>
188 </dependency>
deen1985ee146f32020-08-05 17:54:22 +0200189 <dependency>
190 <groupId>com.google.guava</groupId>
191 <artifactId>guava</artifactId>
192 <version>${guava.version}</version>
193 </dependency>
wasala961af3e2018-03-27 13:02:10 +0200194 </dependencies>
195 </dependencyManagement>
Lusheng Ji44fb1712018-03-21 16:42:36 -0400196</project>