blob: 4c7aa437eb34dfb9330670d96e8ab82aebe8f7a5 [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 ~ ================================================================================
6 ~ Copyright (C) 2018-2019 NOKIA Intellectual Property. All rights reserved.
7 ~ ================================================================================
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"
22 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>
Joanna Jeremicz157c52f2019-10-10 16:32:31 +020035 <version>1.4.0-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>
wasalaec0cf092018-03-21 14:19:43 +010049 <java.version>8</java.version>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +010050 <spring-boot.version>2.1.2.RELEASE</spring-boot.version>
grabinsk4117c9f2019-06-04 15:18:44 +020051 <spring-cloud.version>Greenwich.SR1</spring-cloud.version>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +010052 <springfox.version>2.9.2</springfox.version>
53 <immutables.version>2.7.5</immutables.version>
Joanna Jeremicz3d6161b2019-09-27 08:42:35 +020054 <sdk.version>1.3.1</sdk.version>
wasalaec0cf092018-03-21 14:19:43 +010055 </properties>
wasalab80bcb82018-03-26 15:48:46 +020056
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020057 <modules>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020058 <module>prh-commons</module>
pwielebs0386c752018-12-17 09:49:00 +010059 <module>prh-app-server</module>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020060 </modules>
wasalab80bcb82018-03-26 15:48:46 +020061
wasalaec0cf092018-03-21 14:19:43 +010062 <build>
63 <pluginManagement>
64 <plugins>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020065 <plugin>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-resources-plugin</artifactId>
68 <version>3.1.0</version>
69 <configuration>
70 <encoding>${project.build.sourceEncoding}</encoding>
71 </configuration>
72 </plugin>
wasalaec0cf092018-03-21 14:19:43 +010073 <plugin>
74 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-compiler-plugin</artifactId>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +010076 <version>3.8.0</version>
wasalaec0cf092018-03-21 14:19:43 +010077 <configuration>
78 <source>${java.version}</source>
79 <target>${java.version}</target>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020080 <encoding>${project.build.sourceEncoding}</encoding>
wasalaec0cf092018-03-21 14:19:43 +010081 <showWarnings>true</showWarnings>
82 <showDeprecation>true</showDeprecation>
83 </configuration>
84 </plugin>
wasalaec0cf092018-03-21 14:19:43 +010085 <plugin>
86 <groupId>org.apache.maven.plugins</groupId>
87 <artifactId>maven-surefire-plugin</artifactId>
88 <version>2.19.1</version>
89 <dependencies>
90 <dependency>
91 <groupId>org.junit.platform</groupId>
92 <artifactId>junit-platform-surefire-provider</artifactId>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +010093 <version>1.1.0</version>
wasalaec0cf092018-03-21 14:19:43 +010094 </dependency>
95 </dependencies>
96 </plugin>
Lusheng Ji6bb4aa22018-04-06 10:26:18 -040097 <plugin>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +010098 <groupId>pl.project13.maven</groupId>
99 <artifactId>git-commit-id-plugin</artifactId>
pwielebsb32fb6d2019-07-15 17:25:26 +0200100 <version>3.0.0</version>
101 </plugin>
102 <plugin>
103 <groupId>org.codehaus.mojo</groupId>
104 <artifactId>build-helper-maven-plugin</artifactId>
105 <version>3.0.0</version>
Lusheng Ji6bb4aa22018-04-06 10:26:18 -0400106 </plugin>
wasala44ce56c2018-05-08 13:48:44 +0200107 <plugin>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +0100108 <groupId>org.apache.maven.plugins</groupId>
109 <artifactId>maven-jar-plugin</artifactId>
pwielebsb32fb6d2019-07-15 17:25:26 +0200110 <version>3.1.2</version>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +0100111 </plugin>
112 <plugin>
pwielebsb32fb6d2019-07-15 17:25:26 +0200113 <groupId>io.fabric8</groupId>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +0100114 <artifactId>docker-maven-plugin</artifactId>
pwielebsb32fb6d2019-07-15 17:25:26 +0200115 <version>0.30.0</version>
wasala96481e02018-05-16 15:17:56 +0200116 </plugin>
wasala2a6eb942018-06-18 11:45:08 +0200117 <plugin>
118 <groupId>org.apache.maven.plugins</groupId>
119 <artifactId>maven-deploy-plugin</artifactId>
wasala2a6eb942018-06-18 11:45:08 +0200120 </plugin>
Marcin Migdal4e1b7d32019-01-14 14:31:55 +0100121 <plugin>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-enforcer-plugin</artifactId>
124 <configuration>
125 <skip>true</skip>
126 </configuration>
127 </plugin>
wasalaec0cf092018-03-21 14:19:43 +0100128 </plugins>
129 </pluginManagement>
wasalaec0cf092018-03-21 14:19:43 +0100130 </build>
wasalab80bcb82018-03-26 15:48:46 +0200131
wasala961af3e2018-03-27 13:02:10 +0200132 <dependencyManagement>
133 <dependencies>
wasalab196f932018-04-17 12:25:54 +0200134 <dependency>
micdzied8e8d8f72018-12-12 14:03:19 +0100135 <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
136 <artifactId>cbs-client</artifactId>
pwielebs0386c752018-12-17 09:49:00 +0100137 <version>${sdk.version}</version>
wasala5fbcb632018-04-18 15:21:56 +0200138 </dependency>
139 <dependency>
micdzied8e8d8f72018-12-12 14:03:19 +0100140 <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
141 <artifactId>aai-client</artifactId>
pwielebs0386c752018-12-17 09:49:00 +0100142 <version>${sdk.version}</version>
wasalabb314412018-10-16 10:36:59 +0200143 </dependency>
144 <dependency>
micdzied8e8d8f72018-12-12 14:03:19 +0100145 <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
146 <artifactId>dmaap-client</artifactId>
pwielebs0386c752018-12-17 09:49:00 +0100147 <version>${sdk.version}</version>
148 </dependency>
149 <dependency>
150 <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
151 <artifactId>common-dependency</artifactId>
152 <version>${sdk.version}</version>
micdzied8e8d8f72018-12-12 14:03:19 +0100153 </dependency>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +0100154
wasalab0ef0452018-04-16 09:52:34 +0200155 <dependency>
grabinsk4117c9f2019-06-04 15:18:44 +0200156 <groupId>org.springframework.cloud</groupId>
157 <artifactId>spring-cloud-dependencies</artifactId>
158 <version>${spring-cloud.version}</version>
159 <type>pom</type>
160 <scope>import</scope>
161 </dependency>
162
163 <dependency>
micdzied8e8d8f72018-12-12 14:03:19 +0100164 <groupId>org.springframework.boot</groupId>
165 <artifactId>spring-boot-dependencies</artifactId>
166 <version>${spring-boot.version}</version>
167 <type>pom</type>
168 <scope>import</scope>
wasalab0ef0452018-04-16 09:52:34 +0200169 </dependency>
170 <dependency>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +0100171 <groupId>io.springfox</groupId>
172 <artifactId>springfox-swagger2</artifactId>
173 <version>${springfox.version}</version>
174 </dependency>
175 <dependency>
176 <groupId>io.springfox</groupId>
177 <artifactId>springfox-swagger-ui</artifactId>
178 <version>${springfox.version}</version>
179 </dependency>
180 <dependency>
181 <groupId>org.immutables</groupId>
182 <artifactId>value</artifactId>
183 <version>${immutables.version}</version>
184 </dependency>
185 <dependency>
186 <groupId>org.immutables</groupId>
187 <artifactId>gson</artifactId>
188 <version>${immutables.version}</version>
189 </dependency>
wasala961af3e2018-03-27 13:02:10 +0200190 </dependencies>
191 </dependencyManagement>
Lusheng Ji44fb1712018-03-21 16:42:36 -0400192</project>