blob: 8f56cd64103759d5050648a4fd5465244baae407 [file] [log] [blame]
PatrikBuhr3bdae602019-11-28 10:58:54 +01001<?xml version="1.0" encoding="UTF-8"?>
elinuxhenrik80ebd8e2020-01-28 14:30:18 +01002<!--
3* ========================LICENSE_START=================================
4* O-RAN-SC
5* %%
6* Copyright (C) 2019 Nordix Foundation
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-->
PatrikBuhr1b8d76d2020-01-30 16:10:19 +010021<project
22 xmlns="http://maven.apache.org/POM/4.0.0"
23 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Lathishdac5e372020-01-23 13:56:28 +000024 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
PatrikBuhr1b8d76d2020-01-30 16:10:19 +010025 <modelVersion>4.0.0</modelVersion>
26 <parent>
27 <groupId>org.springframework.boot</groupId>
28 <artifactId>spring-boot-starter-parent</artifactId>
PatrikBuhr083393d2020-05-12 13:27:37 +020029 <version>2.2.7.RELEASE</version>
PatrikBuhr1b8d76d2020-01-30 16:10:19 +010030 <relativePath />
31 </parent>
32 <groupId>org.o-ran-sc.nonrtric</groupId>
33 <artifactId>policy-agent</artifactId>
elinuxhenrik15e26512020-05-27 16:19:49 +020034 <version>2.0.0-SNAPSHOT</version>
PatrikBuhr1b8d76d2020-01-30 16:10:19 +010035 <licenses>
36 <license>
37 <name>The Apache Software License, Version 2.0</name>
38 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
39 </license>
40 </licenses>
41 <repositories>
42 <repository>
43 <id>onap-releases</id>
44 <name>onap-releases</name>
45 <url>https://nexus.onap.org/content/repositories/releases/</url>
46 </repository>
47 </repositories>
48 <properties>
49 <java.version>11</java.version>
50 <springfox.version>2.9.2</springfox.version>
elinuxhenrikb76f5142020-04-06 13:01:00 +020051 <immutable.version>2.8.2</immutable.version>
PatrikBuhr1b8d76d2020-01-30 16:10:19 +010052 <sdk.version>1.1.6</sdk.version>
53 <swagger.version>2.0.0</swagger.version>
elinuxhenrikb76f5142020-04-06 13:01:00 +020054 <json.version>20190722</json.version>
55 <commons-net.version>3.6</commons-net.version>
PatrikBuhr1b8d76d2020-01-30 16:10:19 +010056 <maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
57 <formatter-maven-plugin.version>2.8.1</formatter-maven-plugin.version>
58 <spotless-maven-plugin.version>1.18.0</spotless-maven-plugin.version>
59 <docker-maven-plugin>0.30.0</docker-maven-plugin>
elinuxhenrikbfdd5bb2020-05-04 17:37:59 +020060 <version.dmaap>1.1.11</version.dmaap>
Lathish7e09b1b2020-01-24 14:50:32 +000061 <javax.ws.rs-api.version>2.1.1</javax.ws.rs-api.version>
elinuxhenrik284d3212020-02-07 16:21:06 +010062 <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version>
elinuxhenrikb76f5142020-04-06 13:01:00 +020063 <jacoco-maven-plugin.version>0.8.5</jacoco-maven-plugin.version>
ecaiyanlinuxf40c3b62020-06-04 09:34:31 +020064 <exec-maven-plugin.version>1.6.0</exec-maven-plugin.version>
ecaiyanlinux5ab25ed2020-06-10 18:17:56 +020065 <exec.skip>true</exec.skip>
PatrikBuhr1b8d76d2020-01-30 16:10:19 +010066 </properties>
67 <dependencies>
68 <dependency>
69 <groupId>org.springframework.boot</groupId>
70 <artifactId>spring-boot-starter-web</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>org.springframework.boot</groupId>
74 <artifactId>spring-boot-starter-thymeleaf</artifactId>
75 </dependency>
76 <dependency>
77 <groupId>org.springframework.boot</groupId>
78 <artifactId>spring-boot-starter-webflux</artifactId>
79 </dependency>
80 <dependency>
PatrikBuhr4e7db502020-06-16 11:19:01 +020081 <groupId>org.springframework.boot</groupId>
82 <artifactId>spring-boot-starter-aop</artifactId>
Lathish961b63f2020-03-19 15:24:32 +000083 </dependency>
84 <dependency>
PatrikBuhr1b8d76d2020-01-30 16:10:19 +010085 <groupId>org.springframework.boot</groupId>
86 <artifactId>spring-boot-devtools</artifactId>
87 <optional>true</optional>
88 </dependency>
89 <dependency>
90 <groupId>org.springframework</groupId>
91 <artifactId>spring-webflux</artifactId>
92 </dependency>
93 <dependency>
94 <groupId>io.swagger.core.v3</groupId>
95 <artifactId>swagger-jaxrs2</artifactId>
96 <version>${swagger.version}</version>
97 </dependency>
98 <dependency>
99 <groupId>io.swagger.core.v3</groupId>
100 <artifactId>swagger-jaxrs2-servlet-initializer</artifactId>
101 <version>${swagger.version}</version>
102 </dependency>
103 <dependency>
104 <groupId>javax.xml.bind</groupId>
105 <artifactId>jaxb-api</artifactId>
106 </dependency>
107 <dependency>
108 <groupId>org.immutables</groupId>
109 <artifactId>value</artifactId>
110 <version>${immutable.version}</version>
111 <scope>provided</scope>
112 </dependency>
113 <dependency>
114 <groupId>org.immutables</groupId>
115 <artifactId>gson</artifactId>
116 <version>${immutable.version}</version>
117 </dependency>
118 <dependency>
119 <groupId>org.json</groupId>
120 <artifactId>json</artifactId>
121 <version>${json.version}</version>
122 </dependency>
elinuxhenrik777b07b2020-01-23 16:27:44 +0100123 <dependency>
124 <groupId>commons-net</groupId>
125 <artifactId>commons-net</artifactId>
126 <version>${commons-net.version}</version>
127 </dependency>
PatrikBuhr1b8d76d2020-01-30 16:10:19 +0100128 <dependency>
129 <groupId>org.springframework.boot</groupId>
130 <artifactId>spring-boot-configuration-processor</artifactId>
131 <optional>true</optional>
132 </dependency>
133 <dependency>
134 <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
135 <artifactId>cbs-client</artifactId>
elinuxhenrik777b07b2020-01-23 16:27:44 +0100136 <version>${sdk.version}</version>
137 </dependency>
138 <dependency>
Lathish1f722de2020-01-27 14:57:22 +0000139 <groupId>org.projectlombok</groupId>
140 <artifactId>lombok</artifactId>
elinuxhenrik9fb9f6e2020-01-28 08:59:39 +0100141 <scope>provided</scope>
Lathish1f722de2020-01-27 14:57:22 +0000142 </dependency>
RehanRaza7d0bb602020-02-24 09:35:23 +0100143 <dependency>
elinuxhenrik15e26512020-05-27 16:19:49 +0200144 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
145 <artifactId>dmaapClient</artifactId>
146 <version>${version.dmaap}</version>
RehanRaza7d0bb602020-02-24 09:35:23 +0100147 </dependency>
elinuxhenrik15e26512020-05-27 16:19:49 +0200148 <dependency>
149 <groupId>javax.ws.rs</groupId>
150 <artifactId>javax.ws.rs-api</artifactId>
151 <version>${javax.ws.rs-api.version}</version>
152 </dependency>
153 <dependency>
154 <groupId>org.glassfish.jersey.inject</groupId>
155 <artifactId>jersey-hk2</artifactId>
156 </dependency>
elinuxhenrik15e26512020-05-27 16:19:49 +0200157 <!-- Actuator dependencies -->
158 <dependency>
159 <groupId>org.springframework.boot</groupId>
160 <artifactId>spring-boot-starter-actuator</artifactId>
161 </dependency>
PatrikBuhr1b8d76d2020-01-30 16:10:19 +0100162 <!--REQUIRED TO GENERATE DOCUMENTATION -->
163 <dependency>
164 <groupId>io.springfox</groupId>
165 <artifactId>springfox-swagger2</artifactId>
166 <version>${springfox.version}</version>
167 </dependency>
168 <dependency>
169 <groupId>io.springfox</groupId>
170 <artifactId>springfox-swagger-ui</artifactId>
171 <version>${springfox.version}</version>
172 </dependency>
173 <!-- TEST -->
174 <dependency>
elinuxhenrik15e26512020-05-27 16:19:49 +0200175 <groupId>org.springframework.boot</groupId>
176 <artifactId>spring-boot-starter-test</artifactId>
177 <scope>test</scope>
178 </dependency>
179 <dependency>
PatrikBuhr1b8d76d2020-01-30 16:10:19 +0100180 <groupId>org.awaitility</groupId>
181 <artifactId>awaitility</artifactId>
PatrikBuhr1b8d76d2020-01-30 16:10:19 +0100182 <scope>test</scope>
183 </dependency>
184 <dependency>
185 <groupId>io.projectreactor</groupId>
186 <artifactId>reactor-test</artifactId>
187 <scope>test</scope>
188 </dependency>
189 <dependency>
190 <groupId>org.junit.jupiter</groupId>
191 <artifactId>junit-jupiter-engine</artifactId>
192 <scope>test</scope>
193 </dependency>
194 <dependency>
195 <groupId>org.mockito</groupId>
196 <artifactId>mockito-junit-jupiter</artifactId>
197 <scope>test</scope>
198 </dependency>
199 <dependency>
200 <groupId>org.mockito</groupId>
201 <artifactId>mockito-core</artifactId>
202 <scope>test</scope>
203 </dependency>
204 <dependency>
elinuxhenrik15e26512020-05-27 16:19:49 +0200205 <groupId>com.squareup.okhttp3</groupId>
206 <artifactId>mockwebserver</artifactId>
207 <scope>test</scope>
Lathish7e09b1b2020-01-24 14:50:32 +0000208 </dependency>
PatrikBuhr1b8d76d2020-01-30 16:10:19 +0100209 </dependencies>
210 <build>
211 <plugins>
212 <plugin>
213 <groupId>org.springframework.boot</groupId>
214 <artifactId>spring-boot-maven-plugin</artifactId>
215 </plugin>
216 <plugin>
217 <groupId>net.revelc.code.formatter</groupId>
218 <artifactId>formatter-maven-plugin</artifactId>
219 <version>${formatter-maven-plugin.version}</version>
220 <configuration>
221 <configFile>${project.basedir}/eclipse-formatter.xml</configFile>
222 </configuration>
ecaiyanlinuxf40c3b62020-06-04 09:34:31 +0200223 <!-- https://code.revelc.net/formatter-maven-plugin/ use mvn formatter:format
Lathishdac5e372020-01-23 13:56:28 +0000224 spotless:apply process-sources -->
PatrikBuhr1b8d76d2020-01-30 16:10:19 +0100225 </plugin>
226 <plugin>
227 <groupId>com.diffplug.spotless</groupId>
228 <artifactId>spotless-maven-plugin</artifactId>
229 <version>${spotless-maven-plugin.version}</version>
230 <configuration>
231 <java>
232 <removeUnusedImports />
233 <importOrder>
234 <order>com,java,javax,org</order>
235 </importOrder>
236 </java>
237 </configuration>
ecaiyanlinuxf40c3b62020-06-04 09:34:31 +0200238 <!-- https://github.com/diffplug/spotless/tree/master/plugin-maven use
239 mvn spotless:apply to rewrite source files use mvn spotless:check to validate
Lathishdac5e372020-01-23 13:56:28 +0000240 source files -->
PatrikBuhr1b8d76d2020-01-30 16:10:19 +0100241 </plugin>
242 <plugin>
243 <groupId>org.apache.maven.plugins</groupId>
244 <artifactId>maven-surefire-plugin</artifactId>
245 <configuration>
246 <skipTests>false</skipTests>
247 </configuration>
248 </plugin>
249 <plugin>
250 <artifactId>maven-failsafe-plugin</artifactId>
251 </plugin>
252 <plugin>
253 <groupId>org.codehaus.mojo</groupId>
254 <artifactId>build-helper-maven-plugin</artifactId>
255 <executions>
256 <execution>
257 <id>add-source</id>
258 <phase>generate-sources</phase>
259 <goals>
260 <goal>add-source</goal>
261 </goals>
262 <configuration>
263 <sources>
264 <source>${project.build.directory}/generated-sources/annotations/</source>
265 </sources>
266 </configuration>
267 </execution>
268 </executions>
269 </plugin>
270 <plugin>
Lathishc05ff962020-02-12 14:46:01 +0000271 <groupId>org.jacoco</groupId>
272 <artifactId>jacoco-maven-plugin</artifactId>
elinuxhenrikb76f5142020-04-06 13:01:00 +0200273 <version>${jacoco-maven-plugin.version}</version>
Lathishc05ff962020-02-12 14:46:01 +0000274 <executions>
275 <execution>
276 <id>default-prepare-agent</id>
277 <goals>
278 <goal>prepare-agent</goal>
279 </goals>
280 </execution>
281 <execution>
282 <id>default-report</id>
283 <phase>prepare-package</phase>
284 <goals>
285 <goal>report</goal>
286 </goals>
287 </execution>
288 </executions>
289 </plugin>
290 <plugin>
PatrikBuhr1b8d76d2020-01-30 16:10:19 +0100291 <groupId>io.fabric8</groupId>
292 <artifactId>docker-maven-plugin</artifactId>
293 <version>${docker-maven-plugin}</version>
294 <inherited>false</inherited>
295 <executions>
296 <execution>
297 <id>generate-policy-agent-image</id>
298 <phase>package</phase>
299 <goals>
300 <goal>build</goal>
301 </goals>
302 <configuration>
303 <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry>
304 <images>
305 <image>
306 <name>o-ran-sc/nonrtric-policy-agent:${project.version}</name>
307 <build>
308 <cleanup>try</cleanup>
309 <contextDir>${basedir}</contextDir>
310 <dockerFile>Dockerfile</dockerFile>
311 <args>
312 <JAR>${project.build.finalName}.jar</JAR>
313 </args>
314 <tags>
315 <tag>${project.version}</tag>
316 </tags>
317 </build>
318 </image>
319 </images>
320 </configuration>
321 </execution>
322 <execution>
323 <id>push-policy-agent-image</id>
324 <goals>
325 <goal>build</goal>
326 <goal>push</goal>
327 </goals>
328 <configuration>
329 <pullRegistry>${env.CONTAINER_PULL_REGISTRY}</pullRegistry>
330 <pushRegistry>${env.CONTAINER_PUSH_REGISTRY}</pushRegistry>
331 <images>
332 <image>
333 <name>o-ran-sc/nonrtric-policy-agent:${project.version}</name>
334 <build>
335 <contextDir>${basedir}</contextDir>
336 <dockerFile>Dockerfile</dockerFile>
337 <args>
338 <JAR>${project.build.finalName}.jar</JAR>
339 </args>
340 <tags>
341 <tag>${project.version}</tag>
YongchaoWu7b9db852020-02-07 09:25:43 +0100342 <tag>latest</tag>
PatrikBuhr1b8d76d2020-01-30 16:10:19 +0100343 </tags>
344 </build>
345 </image>
346 </images>
347 </configuration>
348 </execution>
349 </executions>
350 </plugin>
elinuxhenrik284d3212020-02-07 16:21:06 +0100351 <!-- support sonar in multi-module project -->
352 <plugin>
353 <groupId>org.sonarsource.scanner.maven</groupId>
354 <artifactId>sonar-maven-plugin</artifactId>
355 <version>${sonar-maven-plugin.version}</version>
356 </plugin>
ecaiyanlinuxf40c3b62020-06-04 09:34:31 +0200357 <plugin>
358 <groupId>org.codehaus.mojo</groupId>
359 <artifactId>exec-maven-plugin</artifactId>
360 <version>${exec-maven-plugin.version}</version>
361 <executions>
362 <execution>
363 <id>run-test-script</id>
364 <phase>verify</phase>
365 <goals>
366 <goal>exec</goal>
367 </goals>
368 </execution>
369 </executions>
370 <configuration>
371 <executable>bash</executable>
372 <arguments>
373 <argument>run_test.sh</argument>
374 </arguments>
375 <workingDirectory>../test/jenkins/</workingDirectory>
376 </configuration>
377 </plugin>
PatrikBuhr1b8d76d2020-01-30 16:10:19 +0100378 </plugins>
379 </build>
380 <issueManagement>
381 <system>JIRA</system>
382 <url>https://jira.o-ran-sc.org/</url>
383 </issueManagement>
PatrikBuhr3bdae602019-11-28 10:58:54 +0100384</project>