wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ ============LICENSE_START======================================================= |
wasala | 9292dd2 | 2018-03-28 19:04:20 +0200 | [diff] [blame] | 4 | ~ PNF-REGISTRATION-HANDLER |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 5 | ~ ================================================================================ |
| 6 | ~ Copyright (C) 2018 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 Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 21 | <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"> |
wasala | ec0cf09 | 2018-03-21 14:19:43 +0100 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 25 | |
wasala | ec0cf09 | 2018-03-21 14:19:43 +0100 | [diff] [blame] | 26 | <parent> |
| 27 | <groupId>org.onap.oparent</groupId> |
| 28 | <artifactId>oparent</artifactId> |
Gary Wu | c81843d | 2018-08-24 15:22:07 -0700 | [diff] [blame] | 29 | <version>1.2.0</version> |
wasala | ec0cf09 | 2018-03-21 14:19:43 +0100 | [diff] [blame] | 30 | <relativePath/> |
| 31 | </parent> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 32 | |
wasala | ec0cf09 | 2018-03-21 14:19:43 +0100 | [diff] [blame] | 33 | <groupId>org.onap.dcaegen2.services</groupId> |
Lusheng Ji | 44fb171 | 2018-03-21 16:42:36 -0400 | [diff] [blame] | 34 | <artifactId>prh</artifactId> |
wasala | ec0cf09 | 2018-03-21 14:19:43 +0100 | [diff] [blame] | 35 | <version>1.0.0-SNAPSHOT</version> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 36 | |
wasala | 35ee40c | 2018-05-21 20:57:50 +0200 | [diff] [blame] | 37 | <name>dcaegen2-services-prh</name> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 38 | <description>PNF Registration Handler</description> |
wasala | b80bcb8 | 2018-03-26 15:48:46 +0200 | [diff] [blame] | 39 | <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 | |
wasala | ec0cf09 | 2018-03-21 14:19:43 +0100 | [diff] [blame] | 48 | <properties> |
wasala | ec0cf09 | 2018-03-21 14:19:43 +0100 | [diff] [blame] | 49 | <java.version>8</java.version> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 50 | <immutables.version>2.5.6</immutables.version> |
| 51 | <bouncycastle.version>1.59</bouncycastle.version> |
| 52 | <spring.version>5.0.5.RELEASE</spring.version> |
| 53 | <spring-boot.version>2.0.4.RELEASE</spring-boot.version> |
wasala | b0ef045 | 2018-04-16 09:52:34 +0200 | [diff] [blame] | 54 | <tomcat.version>8.5.28</tomcat.version> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 55 | <slf4j.version>1.7.25</slf4j.version> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 56 | <junit-jupiter.version>5.1.0</junit-jupiter.version> |
| 57 | <junit-vintage.version>5.1.0</junit-vintage.version> |
| 58 | <junit-platform.version>1.1.0</junit-platform.version> |
| 59 | <jacoco.version>0.8.2</jacoco.version> |
wasala | ec0cf09 | 2018-03-21 14:19:43 +0100 | [diff] [blame] | 60 | </properties> |
wasala | b80bcb8 | 2018-03-26 15:48:46 +0200 | [diff] [blame] | 61 | |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 62 | <modules> |
| 63 | <module>prh-app-server</module> |
| 64 | <module>prh-aai-client</module> |
| 65 | <module>prh-dmaap-client</module> |
| 66 | <module>prh-commons</module> |
| 67 | </modules> |
wasala | b80bcb8 | 2018-03-26 15:48:46 +0200 | [diff] [blame] | 68 | |
wasala | ec0cf09 | 2018-03-21 14:19:43 +0100 | [diff] [blame] | 69 | <build> |
| 70 | <pluginManagement> |
| 71 | <plugins> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 72 | <plugin> |
| 73 | <groupId>org.apache.maven.plugins</groupId> |
| 74 | <artifactId>maven-resources-plugin</artifactId> |
| 75 | <version>3.1.0</version> |
| 76 | <configuration> |
| 77 | <encoding>${project.build.sourceEncoding}</encoding> |
| 78 | </configuration> |
| 79 | </plugin> |
wasala | ec0cf09 | 2018-03-21 14:19:43 +0100 | [diff] [blame] | 80 | <plugin> |
| 81 | <groupId>org.apache.maven.plugins</groupId> |
| 82 | <artifactId>maven-compiler-plugin</artifactId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 83 | <version>3.7.0</version> |
wasala | ec0cf09 | 2018-03-21 14:19:43 +0100 | [diff] [blame] | 84 | <configuration> |
| 85 | <source>${java.version}</source> |
| 86 | <target>${java.version}</target> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 87 | <encoding>${project.build.sourceEncoding}</encoding> |
wasala | ec0cf09 | 2018-03-21 14:19:43 +0100 | [diff] [blame] | 88 | <showWarnings>true</showWarnings> |
| 89 | <showDeprecation>true</showDeprecation> |
| 90 | </configuration> |
| 91 | </plugin> |
wasala | ec0cf09 | 2018-03-21 14:19:43 +0100 | [diff] [blame] | 92 | <plugin> |
| 93 | <groupId>org.apache.maven.plugins</groupId> |
| 94 | <artifactId>maven-surefire-plugin</artifactId> |
| 95 | <version>2.19.1</version> |
| 96 | <dependencies> |
| 97 | <dependency> |
| 98 | <groupId>org.junit.platform</groupId> |
| 99 | <artifactId>junit-platform-surefire-provider</artifactId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 100 | <version>${junit-platform.version}</version> |
wasala | ec0cf09 | 2018-03-21 14:19:43 +0100 | [diff] [blame] | 101 | </dependency> |
| 102 | </dependencies> |
| 103 | </plugin> |
Lusheng Ji | 6bb4aa2 | 2018-04-06 10:26:18 -0400 | [diff] [blame] | 104 | <plugin> |
| 105 | <groupId>com.spotify</groupId> |
| 106 | <artifactId>docker-maven-plugin</artifactId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 107 | <version>1.1.1</version> |
Lusheng Ji | 6bb4aa2 | 2018-04-06 10:26:18 -0400 | [diff] [blame] | 108 | </plugin> |
wasala | 44ce56c | 2018-05-08 13:48:44 +0200 | [diff] [blame] | 109 | <plugin> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 110 | <groupId>org.springframework.boot</groupId> |
| 111 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 112 | <version>${spring-boot.version}</version> |
wasala | 96481e0 | 2018-05-16 15:17:56 +0200 | [diff] [blame] | 113 | <executions> |
| 114 | <execution> |
wasala | 96481e0 | 2018-05-16 15:17:56 +0200 | [diff] [blame] | 115 | <goals> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 116 | <goal>repackage</goal> |
wasala | 96481e0 | 2018-05-16 15:17:56 +0200 | [diff] [blame] | 117 | </goals> |
| 118 | </execution> |
wasala | 96481e0 | 2018-05-16 15:17:56 +0200 | [diff] [blame] | 119 | </executions> |
| 120 | </plugin> |
wasala | 2a6eb94 | 2018-06-18 11:45:08 +0200 | [diff] [blame] | 121 | <plugin> |
| 122 | <groupId>org.apache.maven.plugins</groupId> |
| 123 | <artifactId>maven-deploy-plugin</artifactId> |
| 124 | <configuration> |
| 125 | <skip>true</skip> |
| 126 | </configuration> |
| 127 | </plugin> |
wasala | ec0cf09 | 2018-03-21 14:19:43 +0100 | [diff] [blame] | 128 | </plugins> |
| 129 | </pluginManagement> |
wasala | ec0cf09 | 2018-03-21 14:19:43 +0100 | [diff] [blame] | 130 | </build> |
wasala | b80bcb8 | 2018-03-26 15:48:46 +0200 | [diff] [blame] | 131 | |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 132 | <dependencyManagement> |
| 133 | <dependencies> |
wasala | b196f93 | 2018-04-17 12:25:54 +0200 | [diff] [blame] | 134 | <dependency> |
wasala | 5fbcb63 | 2018-04-18 15:21:56 +0200 | [diff] [blame] | 135 | <groupId>io.projectreactor</groupId> |
| 136 | <artifactId>reactor-bom</artifactId> |
pwielebs | 83df6e1 | 2018-09-04 09:29:49 +0200 | [diff] [blame^] | 137 | <version>Bismuth-SR10</version> |
wasala | 5fbcb63 | 2018-04-18 15:21:56 +0200 | [diff] [blame] | 138 | <type>pom</type> |
| 139 | <scope>import</scope> |
| 140 | </dependency> |
| 141 | <dependency> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 142 | <groupId>org.springframework.boot</groupId> |
| 143 | <artifactId>spring-boot-dependencies</artifactId> |
| 144 | <version>${spring-boot.version}</version> |
| 145 | <type>pom</type> |
| 146 | <scope>import</scope> |
wasala | b0ef045 | 2018-04-16 09:52:34 +0200 | [diff] [blame] | 147 | </dependency> |
| 148 | <dependency> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 149 | <groupId>org.immutables</groupId> |
| 150 | <artifactId>value</artifactId> |
| 151 | <version>${immutables.version}</version> |
| 152 | <scope>provided</scope> |
| 153 | </dependency> |
| 154 | <dependency> |
| 155 | <groupId>org.immutables</groupId> |
| 156 | <artifactId>gson</artifactId> |
| 157 | <version>${immutables.version}</version> |
wasala | 44ce56c | 2018-05-08 13:48:44 +0200 | [diff] [blame] | 158 | </dependency> |
| 159 | <dependency> |
wasala | b0ef045 | 2018-04-16 09:52:34 +0200 | [diff] [blame] | 160 | <groupId>org.bouncycastle</groupId> |
| 161 | <artifactId>bcprov-jdk15on</artifactId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 162 | <version>${bouncycastle.version}</version> |
wasala | b0ef045 | 2018-04-16 09:52:34 +0200 | [diff] [blame] | 163 | </dependency> |
| 164 | <dependency> |
| 165 | <groupId>org.bouncycastle</groupId> |
| 166 | <artifactId>bcpkix-jdk15on</artifactId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 167 | <version>${bouncycastle.version}</version> |
wasala | b0ef045 | 2018-04-16 09:52:34 +0200 | [diff] [blame] | 168 | </dependency> |
| 169 | <dependency> |
wasala | 3c2e8c9 | 2018-04-12 13:37:41 +0200 | [diff] [blame] | 170 | <groupId>org.apache.httpcomponents</groupId> |
| 171 | <artifactId>httpclient</artifactId> |
| 172 | <version>4.5.4</version> |
| 173 | </dependency> |
| 174 | <dependency> |
wasala | 3c2e8c9 | 2018-04-12 13:37:41 +0200 | [diff] [blame] | 175 | <groupId>org.apache.commons</groupId> |
| 176 | <artifactId>commons-lang3</artifactId> |
| 177 | <version>3.6</version> |
| 178 | </dependency> |
| 179 | <dependency> |
| 180 | <groupId>org.springframework</groupId> |
| 181 | <artifactId>spring-beans</artifactId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 182 | <version>${spring.version}</version> |
wasala | b0ef045 | 2018-04-16 09:52:34 +0200 | [diff] [blame] | 183 | </dependency> |
| 184 | <dependency> |
| 185 | <groupId>org.springframework</groupId> |
| 186 | <artifactId>spring-context</artifactId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 187 | <version>${spring.version}</version> |
| 188 | </dependency> |
| 189 | <dependency> |
| 190 | <groupId>org.springframework</groupId> |
| 191 | <artifactId>spring-webflux</artifactId> |
| 192 | <version>${spring.version}</version> |
wasala | 3c2e8c9 | 2018-04-12 13:37:41 +0200 | [diff] [blame] | 193 | </dependency> |
| 194 | <dependency> |
wasala | b0ef045 | 2018-04-16 09:52:34 +0200 | [diff] [blame] | 195 | <groupId>org.apache.tomcat.embed</groupId> |
| 196 | <artifactId>tomcat-embed-core</artifactId> |
| 197 | <version>${tomcat.version}</version> |
| 198 | </dependency> |
| 199 | <dependency> |
| 200 | <groupId>org.apache.tomcat.embed</groupId> |
| 201 | <artifactId>tomcat-embed-el</artifactId> |
| 202 | <version>${tomcat.version}</version> |
| 203 | </dependency> |
| 204 | <dependency> |
| 205 | <groupId>org.apache.tomcat.embed</groupId> |
| 206 | <artifactId>tomcat-embed-websocket</artifactId> |
| 207 | <version>${tomcat.version}</version> |
wasala | 3c2e8c9 | 2018-04-12 13:37:41 +0200 | [diff] [blame] | 208 | </dependency> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 209 | |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 210 | <dependency> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 211 | <groupId>ch.qos.logback</groupId> |
| 212 | <artifactId>logback-classic</artifactId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 213 | <version>1.2.3</version> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 214 | <scope>provided</scope> |
| 215 | </dependency> |
wasala | d8e4e88 | 2018-03-28 14:20:58 +0200 | [diff] [blame] | 216 | <dependency> |
| 217 | <groupId>org.slf4j</groupId> |
| 218 | <artifactId>jul-to-slf4j</artifactId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 219 | <version>${slf4j.version}</version> |
wasala | d8e4e88 | 2018-03-28 14:20:58 +0200 | [diff] [blame] | 220 | </dependency> |
| 221 | <dependency> |
| 222 | <groupId>org.slf4j</groupId> |
| 223 | <artifactId>log4j-over-slf4j</artifactId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 224 | <version>${slf4j.version}</version> |
wasala | d8e4e88 | 2018-03-28 14:20:58 +0200 | [diff] [blame] | 225 | </dependency> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 226 | |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 227 | <dependency> |
| 228 | <groupId>junit</groupId> |
| 229 | <artifactId>junit</artifactId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 230 | <version>4.12</version> |
| 231 | <scope>test</scope> |
| 232 | </dependency> |
| 233 | <dependency> |
| 234 | <groupId>org.junit.platform</groupId> |
| 235 | <artifactId>junit-platform-launcher</artifactId> |
| 236 | <version>${junit-platform.version}</version> |
| 237 | <scope>test</scope> |
| 238 | </dependency> |
| 239 | <dependency> |
| 240 | <groupId>org.junit.jupiter</groupId> |
| 241 | <artifactId>junit-jupiter-api</artifactId> |
| 242 | <version>${junit-jupiter.version}</version> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 243 | <scope>test</scope> |
| 244 | </dependency> |
| 245 | <dependency> |
| 246 | <groupId>org.junit.jupiter</groupId> |
| 247 | <artifactId>junit-jupiter-engine</artifactId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 248 | <version>${junit-jupiter.version}</version> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 249 | <scope>test</scope> |
| 250 | </dependency> |
| 251 | <dependency> |
| 252 | <groupId>org.junit.vintage</groupId> |
| 253 | <artifactId>junit-vintage-engine</artifactId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 254 | <version>${junit-vintage.version}</version> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 255 | <scope>test</scope> |
| 256 | </dependency> |
| 257 | <dependency> |
| 258 | <groupId>org.springframework</groupId> |
| 259 | <artifactId>spring-test</artifactId> |
Piotr Bochenski | 3c2766d | 2018-08-31 11:49:21 +0200 | [diff] [blame] | 260 | <version>${spring.version}</version> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 261 | <scope>test</scope> |
| 262 | </dependency> |
| 263 | <dependency> |
| 264 | <groupId>org.mockito</groupId> |
| 265 | <artifactId>mockito-core</artifactId> |
| 266 | <version>2.16.0</version> |
| 267 | <scope>test</scope> |
| 268 | </dependency> |
| 269 | <dependency> |
| 270 | <groupId>org.testng</groupId> |
| 271 | <artifactId>testng</artifactId> |
| 272 | <version>6.14.2</version> |
| 273 | <scope>test</scope> |
| 274 | </dependency> |
| 275 | <dependency> |
wasala | b0ef045 | 2018-04-16 09:52:34 +0200 | [diff] [blame] | 276 | <groupId>org.glassfish.jersey.connectors</groupId> |
| 277 | <artifactId>jersey-apache-connector</artifactId> |
| 278 | <version>2.25.1</version> |
| 279 | <scope>test</scope> |
| 280 | </dependency> |
| 281 | <dependency> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 282 | <groupId>org.springframework.boot</groupId> |
| 283 | <artifactId>spring-boot-starter-test</artifactId> |
wasala | b0ef045 | 2018-04-16 09:52:34 +0200 | [diff] [blame] | 284 | <version>2.0.1.RELEASE</version> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 285 | <scope>test</scope> |
| 286 | </dependency> |
| 287 | |
micdzied | 7e7aa0c | 2018-05-07 08:42:44 +0200 | [diff] [blame] | 288 | <dependency> |
| 289 | <groupId>io.springfox</groupId> |
| 290 | <artifactId>springfox-swagger2</artifactId> |
| 291 | <version>2.8.0</version> |
| 292 | </dependency> |
| 293 | <dependency> |
| 294 | <groupId>io.springfox</groupId> |
| 295 | <artifactId>springfox-swagger-ui</artifactId> |
| 296 | <version>2.8.0</version> |
| 297 | </dependency> |
wasala | 961af3e | 2018-03-27 13:02:10 +0200 | [diff] [blame] | 298 | </dependencies> |
| 299 | </dependencyManagement> |
Lusheng Ji | 44fb171 | 2018-03-21 16:42:36 -0400 | [diff] [blame] | 300 | </project> |