blob: bee117ed83c1973a34e1d234d7ebd68bcf2ddfd0 [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>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +010029 <version>1.2.2</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>
pwielebs72aa0aa2019-02-06 10:49:41 +010035 <version>1.2.1-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>
51 <springfox.version>2.9.2</springfox.version>
52 <immutables.version>2.7.5</immutables.version>
pwielebs295746e2019-03-07 10:47:59 +010053 <sdk.version>1.1.4-SNAPSHOT</sdk.version>
wasalaec0cf092018-03-21 14:19:43 +010054 </properties>
wasalab80bcb82018-03-26 15:48:46 +020055
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020056 <modules>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020057 <module>prh-commons</module>
pwielebs0386c752018-12-17 09:49:00 +010058 <module>prh-app-server</module>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020059 </modules>
wasalab80bcb82018-03-26 15:48:46 +020060
wasalaec0cf092018-03-21 14:19:43 +010061 <build>
62 <pluginManagement>
63 <plugins>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020064 <plugin>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-resources-plugin</artifactId>
67 <version>3.1.0</version>
68 <configuration>
69 <encoding>${project.build.sourceEncoding}</encoding>
70 </configuration>
71 </plugin>
wasalaec0cf092018-03-21 14:19:43 +010072 <plugin>
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-compiler-plugin</artifactId>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +010075 <version>3.8.0</version>
wasalaec0cf092018-03-21 14:19:43 +010076 <configuration>
77 <source>${java.version}</source>
78 <target>${java.version}</target>
Piotr Bochenski3c2766d2018-08-31 11:49:21 +020079 <encoding>${project.build.sourceEncoding}</encoding>
wasalaec0cf092018-03-21 14:19:43 +010080 <showWarnings>true</showWarnings>
81 <showDeprecation>true</showDeprecation>
82 </configuration>
83 </plugin>
wasalaec0cf092018-03-21 14:19:43 +010084 <plugin>
85 <groupId>org.apache.maven.plugins</groupId>
86 <artifactId>maven-surefire-plugin</artifactId>
87 <version>2.19.1</version>
88 <dependencies>
89 <dependency>
90 <groupId>org.junit.platform</groupId>
91 <artifactId>junit-platform-surefire-provider</artifactId>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +010092 <version>1.1.0</version>
wasalaec0cf092018-03-21 14:19:43 +010093 </dependency>
94 </dependencies>
95 </plugin>
Lusheng Ji6bb4aa22018-04-06 10:26:18 -040096 <plugin>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +010097 <groupId>pl.project13.maven</groupId>
98 <artifactId>git-commit-id-plugin</artifactId>
99 <version>2.2.6</version>
Lusheng Ji6bb4aa22018-04-06 10:26:18 -0400100 </plugin>
wasala44ce56c2018-05-08 13:48:44 +0200101 <plugin>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +0100102 <groupId>org.apache.maven.plugins</groupId>
103 <artifactId>maven-jar-plugin</artifactId>
104 <version>3.1.1</version>
105 </plugin>
106 <plugin>
107 <groupId>com.spotify</groupId>
108 <artifactId>docker-maven-plugin</artifactId>
109 <version>1.2.0</version>
wasala96481e02018-05-16 15:17:56 +0200110 </plugin>
wasala2a6eb942018-06-18 11:45:08 +0200111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-deploy-plugin</artifactId>
114 <configuration>
115 <skip>true</skip>
116 </configuration>
117 </plugin>
Marcin Migdal4e1b7d32019-01-14 14:31:55 +0100118 <plugin>
119 <groupId>org.apache.maven.plugins</groupId>
120 <artifactId>maven-enforcer-plugin</artifactId>
121 <configuration>
122 <skip>true</skip>
123 </configuration>
124 </plugin>
wasalaec0cf092018-03-21 14:19:43 +0100125 </plugins>
126 </pluginManagement>
wasalaec0cf092018-03-21 14:19:43 +0100127 </build>
wasalab80bcb82018-03-26 15:48:46 +0200128
wasala961af3e2018-03-27 13:02:10 +0200129 <dependencyManagement>
130 <dependencies>
wasalab196f932018-04-17 12:25:54 +0200131 <dependency>
micdzied8e8d8f72018-12-12 14:03:19 +0100132 <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
133 <artifactId>cbs-client</artifactId>
pwielebs0386c752018-12-17 09:49:00 +0100134 <version>${sdk.version}</version>
wasala5fbcb632018-04-18 15:21:56 +0200135 </dependency>
136 <dependency>
micdzied8e8d8f72018-12-12 14:03:19 +0100137 <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
138 <artifactId>aai-client</artifactId>
pwielebs0386c752018-12-17 09:49:00 +0100139 <version>${sdk.version}</version>
wasalabb314412018-10-16 10:36:59 +0200140 </dependency>
141 <dependency>
micdzied8e8d8f72018-12-12 14:03:19 +0100142 <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
143 <artifactId>dmaap-client</artifactId>
pwielebs0386c752018-12-17 09:49:00 +0100144 <version>${sdk.version}</version>
145 </dependency>
146 <dependency>
147 <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
148 <artifactId>common-dependency</artifactId>
149 <version>${sdk.version}</version>
micdzied8e8d8f72018-12-12 14:03:19 +0100150 </dependency>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +0100151
wasalab0ef0452018-04-16 09:52:34 +0200152 <dependency>
micdzied8e8d8f72018-12-12 14:03:19 +0100153 <groupId>org.springframework.boot</groupId>
154 <artifactId>spring-boot-dependencies</artifactId>
155 <version>${spring-boot.version}</version>
156 <type>pom</type>
157 <scope>import</scope>
wasalab0ef0452018-04-16 09:52:34 +0200158 </dependency>
159 <dependency>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +0100160 <groupId>io.springfox</groupId>
161 <artifactId>springfox-swagger2</artifactId>
162 <version>${springfox.version}</version>
163 </dependency>
164 <dependency>
165 <groupId>io.springfox</groupId>
166 <artifactId>springfox-swagger-ui</artifactId>
167 <version>${springfox.version}</version>
168 </dependency>
169 <dependency>
170 <groupId>org.immutables</groupId>
171 <artifactId>value</artifactId>
172 <version>${immutables.version}</version>
173 </dependency>
174 <dependency>
175 <groupId>org.immutables</groupId>
176 <artifactId>gson</artifactId>
177 <version>${immutables.version}</version>
178 </dependency>
179
180 <dependency>
wasala961af3e2018-03-27 13:02:10 +0200181 <groupId>org.testng</groupId>
182 <artifactId>testng</artifactId>
Piotr Bocheński2ce68d32019-02-08 13:38:02 +0100183 <version>6.14.3</version>
wasala961af3e2018-03-27 13:02:10 +0200184 <scope>test</scope>
185 </dependency>
wasala961af3e2018-03-27 13:02:10 +0200186 </dependencies>
187 </dependencyManagement>
Lusheng Ji44fb1712018-03-21 16:42:36 -0400188</project>