blob: c9e829c8d8f259173adc0be9956f4171d5fccd9e [file] [log] [blame]
Pawel486429d2020-02-10 10:36:16 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ================================================================================
4 Copyright (c) 2020 Nokia. All rights reserved.
5 ================================================================================
6 Licensed under the Apache License, Version 2.0 (the "License"); you may not
7 use this file except in compliance with the License. You may obtain a copy
8 of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
9 by applicable law or agreed to in writing, software distributed under the
10 License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
11 OF ANY KIND, either express or implied. See the License for the specific
12 language governing permissions and limitations under the License.
13 ============LICENSE_END=========================================================
14-->
15<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
kjaniakc45f39c2020-02-19 16:42:38 +010016 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
Pawel486429d2020-02-10 10:36:16 +010017 <modelVersion>4.0.0</modelVersion>
18
19 <parent>
20 <groupId>org.onap.oparent</groupId>
21 <artifactId>oparent</artifactId>
22 <version>3.0.0</version>
23 </parent>
Bartosz Gardziejewskibeecacb2020-02-13 07:31:47 +010024 <groupId>org.onap.aaf.certservice</groupId>
Bartosz Gardziejewski5d71eb72020-02-13 08:17:55 +010025 <artifactId>aaf-certservice</artifactId>
Bartosz Gardziejewskidd700fc2020-02-13 08:44:03 +010026 <version>1.0.0-SNAPSHOT</version>
Bartosz Gardziejewski5d71eb72020-02-13 08:17:55 +010027 <name>aaf-certservice</name>
28 <description>AAF Certification Service</description>
Pawel486429d2020-02-10 10:36:16 +010029 <packaging>pom</packaging>
Tomasz Golabek3b531c02020-02-12 08:56:23 +010030
31 <properties>
32 <nexusproxy>https://nexus.onap.org</nexusproxy>
33 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
34 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
35 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
36 <sitePath>/content/sites/site/org/onap/aaf/cert-service/${project.artifactId}/${project.version}</sitePath>
Tomasz Golabekce778052020-02-14 09:14:05 +010037 <java.version>11</java.version>
38 <springdoc-openapi-maven-plugin.apiDocsUrl>http://localhost:8080/v3/api-docs</springdoc-openapi-maven-plugin.apiDocsUrl>
39
40 <!-- Dependencies -->
41 <assertj-core.version>3.15.0</assertj-core.version>
42 <mockito-core.version>3.2.4</mockito-core.version>
43 <spring-core.version>5.2.3.RELEASE</spring-core.version>
44 <spring-boot-starter.version>2.2.4.RELEASE</spring-boot-starter.version>
45 <maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version>
46 <maven-surefire-plugin.version>3.0.0-M4</maven-surefire-plugin.version>
47 <spring-boot-starter-actuator.version>2.2.4.RELEASE</spring-boot-starter-actuator.version>
48 <spring-boot-starter-log4j2.version>2.1.5.RELEASE</spring-boot-starter-log4j2.version>
Tomasz Golabek7244c902020-02-21 15:49:34 +010049 <spring-cloud-starter-config.version>2.2.1.RELEASE</spring-cloud-starter-config.version>
Tomasz Golabekce778052020-02-14 09:14:05 +010050 <springdoc-openapi-ui.version>1.2.30</springdoc-openapi-ui.version>
51 <bouncycastle.version>1.60</bouncycastle.version>
52 <docker-maven-plugin.version>0.33.0</docker-maven-plugin.version>
53 <springdoc-openapi-maven-plugin.version>0.2</springdoc-openapi-maven-plugin.version>
54 <gson.version>2.8.6</gson.version>
EmmettCox153a7ac2020-02-17 13:54:05 +000055 <httpcomponents.version>4.5.6</httpcomponents.version>
Joanna Jeremiczee672c32020-02-26 14:30:36 +010056 <commons-lang3.version>3.9</commons-lang3.version>
EmmettCox153a7ac2020-02-17 13:54:05 +000057 <commons-io.version>2.6</commons-io.version>
Tomasz Golabekce778052020-02-14 09:14:05 +010058 <docker-maven-plugin.version>0.33.0</docker-maven-plugin.version>
kjaniak6e2234c2020-02-17 23:04:25 +010059 <junit.version>5.5.2</junit.version>
kjaniak3a1f8302020-02-18 13:25:43 +010060 <mockito-junit-jupiter.version>2.17.0</mockito-junit-jupiter.version>
Tomasz Golabekce778052020-02-14 09:14:05 +010061
62 <!-- Docker -->
63 <skipDockerPush>true</skipDockerPush>
64 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format>
kjaniakc45f39c2020-02-19 16:42:38 +010065 <maven-shade-plugin.version>3.2.2</maven-shade-plugin.version>
Tomasz Golabekce778052020-02-14 09:14:05 +010066 <docker-image.registry>${onap.nexus.dockerregistry.daily}</docker-image.registry>
67 <docker-image.namespace>onap</docker-image.namespace>
68 <docker-image.name>${project.groupId}.${project.artifactId}</docker-image.name>
69 <docker-image.latest>${project.version}</docker-image.latest>
70 <version>${project.version}</version>
71 <docker.http_proxy/>
72
Tomasz Golabek3b531c02020-02-12 08:56:23 +010073 </properties>
74
Pawel486429d2020-02-10 10:36:16 +010075 <modules>
76 <module>certService</module>
kjaniak8209f7c2020-02-14 14:33:27 +010077 <module>certServiceClient</module>
Pawel486429d2020-02-10 10:36:16 +010078 </modules>
Tomasz Golabek3b531c02020-02-12 08:56:23 +010079
kjaniak85022a82020-02-14 16:27:00 +010080 <build>
81 <pluginManagement>
82 <plugins>
83 <plugin>
kjaniak6e2234c2020-02-17 23:04:25 +010084 <groupId>org.springdoc</groupId>
85 <artifactId>springdoc-openapi-maven-plugin</artifactId>
86 <version>${springdoc-openapi-maven-plugin.version}</version>
87 <executions>
88 <execution>
89 <phase>integration-test</phase>
90 <goals>
91 <goal>generate</goal>
92 </goals>
93 </execution>
94 </executions>
95 <configuration>
96 <apiDocsUrl>${springdoc-openapi-maven-plugin.apiDocsUrl}</apiDocsUrl>
97 <outputFileName>api-docs.json</outputFileName>
98 <outputDir>${project.build.directory}</outputDir>
99 </configuration>
100 </plugin>
101 <plugin>
kjaniak85022a82020-02-14 16:27:00 +0100102 <groupId>org.springframework.boot</groupId>
103 <artifactId>spring-boot-maven-plugin</artifactId>
104 <version>${spring-boot-starter.version}</version>
kjaniak6e2234c2020-02-17 23:04:25 +0100105 <executions>
106 <execution>
107 <goals>
108 <goal>repackage</goal>
109 </goals>
110 </execution>
111 <execution>
112 <id>pre-integration-test</id>
113 <goals>
114 <goal>start</goal>
115 </goals>
116 </execution>
117 <execution>
118 <id>post-integration-test</id>
119 <goals>
120 <goal>stop</goal>
121 </goals>
122 </execution>
123 </executions>
kjaniak85022a82020-02-14 16:27:00 +0100124 </plugin>
125 <plugin>
kjaniak6e2234c2020-02-17 23:04:25 +0100126 <groupId>org.apache.maven.plugins</groupId>
kjaniak85022a82020-02-14 16:27:00 +0100127 <artifactId>maven-javadoc-plugin</artifactId>
128 <version>${maven-javadoc-plugin.version}</version>
kjaniak6e2234c2020-02-17 23:04:25 +0100129 <configuration>
130 <quiet>true</quiet>
131 <verbose>false</verbose>
132 <useStandardDocletOptions>false</useStandardDocletOptions>
133 <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
134 </configuration>
135 <executions>
136 <execution>
137 <id>aggregate</id>
138 <phase>site</phase>
139 <goals>
140 <goal>aggregate</goal>
141 </goals>
142 </execution>
143 <execution>
144 <id>attach-javadoc</id>
145 <goals>
146 <goal>jar</goal>
147 </goals>
148 </execution>
149 </executions>
kjaniak85022a82020-02-14 16:27:00 +0100150 </plugin>
151 <plugin>
152 <groupId>org.apache.maven.plugins</groupId>
153 <artifactId>maven-surefire-plugin</artifactId>
154 <version>${maven-surefire-plugin.version}</version>
155 </plugin>
156 </plugins>
157 </pluginManagement>
158 </build>
159
Tomasz Golabek3b531c02020-02-12 08:56:23 +0100160 <distributionManagement>
161 <repository>
162 <id>ecomp-releases</id>
163 <name>AAF Release Repository</name>
164 <url>${nexusproxy}${releaseNexusPath}</url>
165 </repository>
166 <snapshotRepository>
167 <id>ecomp-snapshots</id>
168 <name>AAF Snapshot Repository</name>
169 <url>${nexusproxy}${snapshotNexusPath}</url>
170 </snapshotRepository>
171 <site>
172 <id>ecomp-site</id>
173 <url>dav:${nexusproxy}${sitePath}</url>
174 </site>
175 </distributionManagement>
176
kjaniak8209f7c2020-02-14 14:33:27 +0100177 <dependencyManagement>
178
179 <dependencies>
180 <dependency>
181 <groupId>org.springframework.boot</groupId>
182 <artifactId>spring-boot-starter-web</artifactId>
183 <version>${spring-boot-starter.version}</version>
184 <exclusions>
185 <exclusion>
186 <groupId>org.springframework.boot</groupId>
187 <artifactId>spring-boot-starter-logging</artifactId>
188 </exclusion>
189 </exclusions>
190 </dependency>
191 <dependency>
192 <groupId>org.springframework.boot</groupId>
193 <artifactId>spring-boot-starter-log4j2</artifactId>
194 <version>${spring-boot-starter-log4j2.version}</version>
195 </dependency>
196 <dependency>
197 <groupId>org.springframework.boot</groupId>
198 <artifactId>spring-boot-starter-test</artifactId>
199 <version>${spring-boot-starter.version}</version>
200 <scope>test</scope>
201 <exclusions>
202 <exclusion>
203 <groupId>org.junit.vintage</groupId>
204 <artifactId>junit-vintage-engine</artifactId>
205 </exclusion>
206 </exclusions>
207 </dependency>
208 <dependency>
209 <groupId>org.springframework.boot</groupId>
210 <artifactId>spring-boot-starter-actuator</artifactId>
211 <version>${spring-boot-starter-actuator.version}</version>
212 </dependency>
213 <dependency>
214 <groupId>org.springdoc</groupId>
215 <artifactId>springdoc-openapi-ui</artifactId>
216 <version>${springdoc-openapi-ui.version}</version>
217 </dependency>
218 <dependency>
219 <groupId>org.bouncycastle</groupId>
220 <artifactId>bcpkix-jdk15on</artifactId>
221 <version>${bouncycastle.version}</version>
222 </dependency>
223 <dependency>
224 <groupId>org.bouncycastle</groupId>
225 <artifactId>bcprov-jdk15on</artifactId>
226 <version>${bouncycastle.version}</version>
227 </dependency>
228 <dependency>
229 <groupId>com.google.code.gson</groupId>
230 <artifactId>gson</artifactId>
231 <version>${gson.version}</version>
232 </dependency>
233 <dependency>
EmmettCox153a7ac2020-02-17 13:54:05 +0000234 <groupId>org.apache.httpcomponents</groupId>
235 <artifactId>httpclient</artifactId>
236 <version>${httpcomponents.version}</version>
237 </dependency>
238 <dependency>
Joanna Jeremiczee672c32020-02-26 14:30:36 +0100239 <groupId>org.apache.commons</groupId>
240 <artifactId>commons-lang3</artifactId>
241 <version>${commons-lang3.version}</version>
242 </dependency>
243 <dependency>
EmmettCox153a7ac2020-02-17 13:54:05 +0000244 <groupId>commons-io</groupId>
245 <artifactId>commons-io</artifactId>
246 <version>${commons-io.version}</version>
247 </dependency>
248 <dependency>
kjaniak8209f7c2020-02-14 14:33:27 +0100249 <!-- Import dependency management from Spring Boot -->
250 <groupId>org.springframework.boot</groupId>
251 <artifactId>spring-boot-dependencies</artifactId>
252 <version>${spring-boot-starter.version}</version>
253 <type>pom</type>
254 <scope>import</scope>
255 </dependency>
256
257 <!-- Test dependecies -->
kjaniak6e2234c2020-02-17 23:04:25 +0100258 <dependency>
259 <groupId>org.assertj</groupId>
260 <artifactId>assertj-core</artifactId>
261 <version>${assertj-core.version}</version>
262 <scope>test</scope>
263 </dependency>
kjaniak8209f7c2020-02-14 14:33:27 +0100264 <dependency>
kjaniak85022a82020-02-14 16:27:00 +0100265 <groupId>org.junit.jupiter</groupId>
266 <artifactId>junit-jupiter-engine</artifactId>
267 <version>${junit.version}</version>
268 <scope>test</scope>
269 </dependency>
270 <dependency>
kjaniak6e2234c2020-02-17 23:04:25 +0100271 <groupId>org.junit.jupiter</groupId>
272 <artifactId>junit-jupiter-api</artifactId>
273 <version>${junit.version}</version>
kjaniak8209f7c2020-02-14 14:33:27 +0100274 <scope>test</scope>
275 </dependency>
276 <dependency>
kjaniak6e2234c2020-02-17 23:04:25 +0100277 <groupId>org.mockito</groupId>
278 <artifactId>mockito-core</artifactId>
279 <version>${mockito-core.version}</version>
kjaniak8209f7c2020-02-14 14:33:27 +0100280 <scope>test</scope>
281 </dependency>
kjaniak3a1f8302020-02-18 13:25:43 +0100282 <dependency>
283 <groupId>org.mockito</groupId>
284 <artifactId>mockito-junit-jupiter</artifactId>
285 <version>${mockito-junit-jupiter.version}</version>
286 <scope>test</scope>
287 </dependency>
288
kjaniak8209f7c2020-02-14 14:33:27 +0100289 </dependencies>
290 </dependencyManagement>
291
Pawel486429d2020-02-10 10:36:16 +0100292</project>