Merge "Add documentation"
[oom/platform/cert-service.git] / pom.xml
1 <?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"
16          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
17     <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>
24     <groupId>org.onap.aaf.certservice</groupId>
25     <artifactId>aaf-certservice</artifactId>
26     <version>1.0.0-SNAPSHOT</version>
27     <name>aaf-certservice</name>
28     <description>AAF Certification Service</description>
29     <packaging>pom</packaging>
30
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>
37         <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>
49         <springdoc-openapi-ui.version>1.2.30</springdoc-openapi-ui.version>
50         <bouncycastle.version>1.60</bouncycastle.version>
51         <docker-maven-plugin.version>0.33.0</docker-maven-plugin.version>
52         <springdoc-openapi-maven-plugin.version>0.2</springdoc-openapi-maven-plugin.version>
53         <gson.version>2.8.6</gson.version>
54         <docker-maven-plugin.version>0.33.0</docker-maven-plugin.version>
55         <junit.version>5.5.2</junit.version>
56         <mockito-junit-jupiter.version>2.17.0</mockito-junit-jupiter.version>
57
58         <!-- Docker -->
59         <skipDockerPush>true</skipDockerPush>
60         <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format>
61         <docker-image.registry>${onap.nexus.dockerregistry.daily}</docker-image.registry>
62         <docker-image.namespace>onap</docker-image.namespace>
63         <docker-image.name>${project.groupId}.${project.artifactId}</docker-image.name>
64         <docker-image.latest>${project.version}</docker-image.latest>
65         <version>${project.version}</version>
66         <docker.http_proxy/>
67         <immutables.version>2.7.5</immutables.version>
68
69
70     </properties>
71
72     <modules>
73         <module>certService</module>
74         <module>certServiceClient</module>
75     </modules>
76
77     <build>
78         <pluginManagement>
79             <plugins>
80                 <plugin>
81                     <groupId>org.springdoc</groupId>
82                     <artifactId>springdoc-openapi-maven-plugin</artifactId>
83                     <version>${springdoc-openapi-maven-plugin.version}</version>
84                     <executions>
85                         <execution>
86                             <phase>integration-test</phase>
87                             <goals>
88                                 <goal>generate</goal>
89                             </goals>
90                         </execution>
91                     </executions>
92                     <configuration>
93                         <apiDocsUrl>${springdoc-openapi-maven-plugin.apiDocsUrl}</apiDocsUrl>
94                         <outputFileName>api-docs.json</outputFileName>
95                         <outputDir>${project.build.directory}</outputDir>
96                     </configuration>
97                 </plugin>
98                 <plugin>
99                     <groupId>org.springframework.boot</groupId>
100                     <artifactId>spring-boot-maven-plugin</artifactId>
101                     <version>${spring-boot-starter.version}</version>
102                     <executions>
103                         <execution>
104                             <goals>
105                                 <goal>repackage</goal>
106                             </goals>
107                         </execution>
108                         <execution>
109                             <id>pre-integration-test</id>
110                             <goals>
111                                 <goal>start</goal>
112                             </goals>
113                         </execution>
114                         <execution>
115                             <id>post-integration-test</id>
116                             <goals>
117                                 <goal>stop</goal>
118                             </goals>
119                         </execution>
120                     </executions>
121                 </plugin>
122                 <plugin>
123                     <groupId>org.apache.maven.plugins</groupId>
124                     <artifactId>maven-javadoc-plugin</artifactId>
125                     <version>${maven-javadoc-plugin.version}</version>
126                     <configuration>
127                         <quiet>true</quiet>
128                         <verbose>false</verbose>
129                         <useStandardDocletOptions>false</useStandardDocletOptions>
130                         <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
131                     </configuration>
132                     <executions>
133                         <execution>
134                             <id>aggregate</id>
135                             <phase>site</phase>
136                             <goals>
137                                 <goal>aggregate</goal>
138                             </goals>
139                         </execution>
140                         <execution>
141                             <id>attach-javadoc</id>
142                             <goals>
143                                 <goal>jar</goal>
144                             </goals>
145                         </execution>
146                     </executions>
147                 </plugin>
148                 <plugin>
149                     <groupId>org.apache.maven.plugins</groupId>
150                     <artifactId>maven-surefire-plugin</artifactId>
151                     <version>${maven-surefire-plugin.version}</version>
152                 </plugin>
153             </plugins>
154         </pluginManagement>
155     </build>
156
157     <distributionManagement>
158         <repository>
159             <id>ecomp-releases</id>
160             <name>AAF Release Repository</name>
161             <url>${nexusproxy}${releaseNexusPath}</url>
162         </repository>
163         <snapshotRepository>
164             <id>ecomp-snapshots</id>
165             <name>AAF Snapshot Repository</name>
166             <url>${nexusproxy}${snapshotNexusPath}</url>
167         </snapshotRepository>
168         <site>
169             <id>ecomp-site</id>
170             <url>dav:${nexusproxy}${sitePath}</url>
171         </site>
172     </distributionManagement>
173
174     <dependencyManagement>
175
176         <dependencies>
177             <dependency>
178                 <groupId>org.springframework.boot</groupId>
179                 <artifactId>spring-boot-starter-web</artifactId>
180                 <version>${spring-boot-starter.version}</version>
181                 <exclusions>
182                     <exclusion>
183                         <groupId>org.springframework.boot</groupId>
184                         <artifactId>spring-boot-starter-logging</artifactId>
185                     </exclusion>
186                 </exclusions>
187             </dependency>
188             <dependency>
189                 <groupId>org.springframework.boot</groupId>
190                 <artifactId>spring-boot-starter-log4j2</artifactId>
191                 <version>${spring-boot-starter-log4j2.version}</version>
192             </dependency>
193             <dependency>
194                 <groupId>org.springframework.boot</groupId>
195                 <artifactId>spring-boot-starter-test</artifactId>
196                 <version>${spring-boot-starter.version}</version>
197                 <scope>test</scope>
198                 <exclusions>
199                     <exclusion>
200                         <groupId>org.junit.vintage</groupId>
201                         <artifactId>junit-vintage-engine</artifactId>
202                     </exclusion>
203                 </exclusions>
204             </dependency>
205             <dependency>
206                 <groupId>org.springframework.boot</groupId>
207                 <artifactId>spring-boot-starter-actuator</artifactId>
208                 <version>${spring-boot-starter-actuator.version}</version>
209             </dependency>
210             <dependency>
211                 <groupId>org.springdoc</groupId>
212                 <artifactId>springdoc-openapi-ui</artifactId>
213                 <version>${springdoc-openapi-ui.version}</version>
214             </dependency>
215             <dependency>
216                 <groupId>org.bouncycastle</groupId>
217                 <artifactId>bcpkix-jdk15on</artifactId>
218                 <version>${bouncycastle.version}</version>
219             </dependency>
220             <dependency>
221                 <groupId>org.bouncycastle</groupId>
222                 <artifactId>bcprov-jdk15on</artifactId>
223                 <version>${bouncycastle.version}</version>
224             </dependency>
225             <dependency>
226                 <groupId>com.google.code.gson</groupId>
227                 <artifactId>gson</artifactId>
228                 <version>${gson.version}</version>
229             </dependency>
230             <dependency>
231                 <!-- Import dependency management from Spring Boot -->
232                 <groupId>org.springframework.boot</groupId>
233                 <artifactId>spring-boot-dependencies</artifactId>
234                 <version>${spring-boot-starter.version}</version>
235                 <type>pom</type>
236                 <scope>import</scope>
237             </dependency>
238
239             <!--   Test dependecies    -->
240             <dependency>
241                 <groupId>org.assertj</groupId>
242                 <artifactId>assertj-core</artifactId>
243                 <version>${assertj-core.version}</version>
244                 <scope>test</scope>
245             </dependency>
246             <dependency>
247                 <groupId>org.junit.jupiter</groupId>
248                 <artifactId>junit-jupiter-engine</artifactId>
249                 <version>${junit.version}</version>
250                 <scope>test</scope>
251             </dependency>
252             <dependency>
253                 <groupId>org.junit.jupiter</groupId>
254                 <artifactId>junit-jupiter-api</artifactId>
255                 <version>${junit.version}</version>
256                 <scope>test</scope>
257             </dependency>
258             <dependency>
259                 <groupId>org.mockito</groupId>
260                 <artifactId>mockito-core</artifactId>
261                 <version>${mockito-core.version}</version>
262                 <scope>test</scope>
263             </dependency>
264
265             <dependency>
266                 <groupId>org.mockito</groupId>
267                 <artifactId>mockito-junit-jupiter</artifactId>
268                 <version>${mockito-junit-jupiter.version}</version>
269                 <scope>test</scope>
270             </dependency>
271
272         </dependencies>
273     </dependencyManagement>
274
275 </project>