blob: 5dcd8ac1f7232b4c918ec533b1a12755025115b6 [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"
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>
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>
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
56 <!-- Docker -->
57 <skipDockerPush>true</skipDockerPush>
58 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format>
59 <docker-image.registry>${onap.nexus.dockerregistry.daily}</docker-image.registry>
60 <docker-image.namespace>onap</docker-image.namespace>
61 <docker-image.name>${project.groupId}.${project.artifactId}</docker-image.name>
62 <docker-image.latest>${project.version}</docker-image.latest>
63 <version>${project.version}</version>
64 <docker.http_proxy/>
65
Tomasz Golabek3b531c02020-02-12 08:56:23 +010066 </properties>
67
Pawel486429d2020-02-10 10:36:16 +010068 <modules>
69 <module>certService</module>
kjaniak8209f7c2020-02-14 14:33:27 +010070 <module>certServiceClient</module>
Pawel486429d2020-02-10 10:36:16 +010071 </modules>
Tomasz Golabek3b531c02020-02-12 08:56:23 +010072
73 <distributionManagement>
74 <repository>
75 <id>ecomp-releases</id>
76 <name>AAF Release Repository</name>
77 <url>${nexusproxy}${releaseNexusPath}</url>
78 </repository>
79 <snapshotRepository>
80 <id>ecomp-snapshots</id>
81 <name>AAF Snapshot Repository</name>
82 <url>${nexusproxy}${snapshotNexusPath}</url>
83 </snapshotRepository>
84 <site>
85 <id>ecomp-site</id>
86 <url>dav:${nexusproxy}${sitePath}</url>
87 </site>
88 </distributionManagement>
89
kjaniak8209f7c2020-02-14 14:33:27 +010090 <dependencyManagement>
91
92 <dependencies>
93 <dependency>
94 <groupId>org.springframework.boot</groupId>
95 <artifactId>spring-boot-starter-web</artifactId>
96 <version>${spring-boot-starter.version}</version>
97 <exclusions>
98 <exclusion>
99 <groupId>org.springframework.boot</groupId>
100 <artifactId>spring-boot-starter-logging</artifactId>
101 </exclusion>
102 </exclusions>
103 </dependency>
104 <dependency>
105 <groupId>org.springframework.boot</groupId>
106 <artifactId>spring-boot-starter-log4j2</artifactId>
107 <version>${spring-boot-starter-log4j2.version}</version>
108 </dependency>
109 <dependency>
110 <groupId>org.springframework.boot</groupId>
111 <artifactId>spring-boot-starter-test</artifactId>
112 <version>${spring-boot-starter.version}</version>
113 <scope>test</scope>
114 <exclusions>
115 <exclusion>
116 <groupId>org.junit.vintage</groupId>
117 <artifactId>junit-vintage-engine</artifactId>
118 </exclusion>
119 </exclusions>
120 </dependency>
121 <dependency>
122 <groupId>org.springframework.boot</groupId>
123 <artifactId>spring-boot-starter-actuator</artifactId>
124 <version>${spring-boot-starter-actuator.version}</version>
125 </dependency>
126 <dependency>
127 <groupId>org.springdoc</groupId>
128 <artifactId>springdoc-openapi-ui</artifactId>
129 <version>${springdoc-openapi-ui.version}</version>
130 </dependency>
131 <dependency>
132 <groupId>org.bouncycastle</groupId>
133 <artifactId>bcpkix-jdk15on</artifactId>
134 <version>${bouncycastle.version}</version>
135 </dependency>
136 <dependency>
137 <groupId>org.bouncycastle</groupId>
138 <artifactId>bcprov-jdk15on</artifactId>
139 <version>${bouncycastle.version}</version>
140 </dependency>
141 <dependency>
142 <groupId>com.google.code.gson</groupId>
143 <artifactId>gson</artifactId>
144 <version>${gson.version}</version>
145 </dependency>
146 <dependency>
147 <!-- Import dependency management from Spring Boot -->
148 <groupId>org.springframework.boot</groupId>
149 <artifactId>spring-boot-dependencies</artifactId>
150 <version>${spring-boot-starter.version}</version>
151 <type>pom</type>
152 <scope>import</scope>
153 </dependency>
154
155 <!-- Test dependecies -->
156
157 <dependency>
158 <groupId>org.mockito</groupId>
159 <artifactId>mockito-core</artifactId>
160 <version>${mockito-core.version}</version>
161 <scope>test</scope>
162 </dependency>
163 <dependency>
164 <groupId>org.assertj</groupId>
165 <artifactId>assertj-core</artifactId>
166 <version>${assertj-core.version}</version>
167 <scope>test</scope>
168 </dependency>
169 </dependencies>
170 </dependencyManagement>
171
Pawel486429d2020-02-10 10:36:16 +0100172</project>