Pawel | 486429d | 2020-02-10 10:36:16 +0100 | [diff] [blame] | 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" |
kjaniak | c45f39c | 2020-02-19 16:42:38 +0100 | [diff] [blame] | 16 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Pawel | 486429d | 2020-02-10 10:36:16 +0100 | [diff] [blame] | 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 Gardziejewski | beecacb | 2020-02-13 07:31:47 +0100 | [diff] [blame] | 24 | <groupId>org.onap.aaf.certservice</groupId> |
Bartosz Gardziejewski | 5d71eb7 | 2020-02-13 08:17:55 +0100 | [diff] [blame] | 25 | <artifactId>aaf-certservice</artifactId> |
Bartosz Gardziejewski | dd700fc | 2020-02-13 08:44:03 +0100 | [diff] [blame] | 26 | <version>1.0.0-SNAPSHOT</version> |
Bartosz Gardziejewski | 5d71eb7 | 2020-02-13 08:17:55 +0100 | [diff] [blame] | 27 | <name>aaf-certservice</name> |
| 28 | <description>AAF Certification Service</description> |
Pawel | 486429d | 2020-02-10 10:36:16 +0100 | [diff] [blame] | 29 | <packaging>pom</packaging> |
Tomasz Golabek | 3b531c0 | 2020-02-12 08:56:23 +0100 | [diff] [blame] | 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> |
Tomasz Golabek | ce77805 | 2020-02-14 09:14:05 +0100 | [diff] [blame] | 37 | <java.version>11</java.version> |
Bartosz Gardziejewski | 0855846 | 2020-03-10 16:05:09 +0100 | [diff] [blame] | 38 | <springdoc-openapi-maven-plugin.apiDocsUrl>http://localhost:8080/v3/api-docs.yaml</springdoc-openapi-maven-plugin.apiDocsUrl> |
Tomasz Golabek | ce77805 | 2020-02-14 09:14:05 +0100 | [diff] [blame] | 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 Golabek | 7244c90 | 2020-02-21 15:49:34 +0100 | [diff] [blame] | 49 | <spring-cloud-starter-config.version>2.2.1.RELEASE</spring-cloud-starter-config.version> |
Tomasz Golabek | ce77805 | 2020-02-14 09:14:05 +0100 | [diff] [blame] | 50 | <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> |
EmmettCox | 153a7ac | 2020-02-17 13:54:05 +0000 | [diff] [blame] | 55 | <httpcomponents.version>4.5.6</httpcomponents.version> |
Joanna Jeremicz | ee672c3 | 2020-02-26 14:30:36 +0100 | [diff] [blame] | 56 | <commons-lang3.version>3.9</commons-lang3.version> |
EmmettCox | 153a7ac | 2020-02-17 13:54:05 +0000 | [diff] [blame] | 57 | <commons-io.version>2.6</commons-io.version> |
Tomasz Golabek | ce77805 | 2020-02-14 09:14:05 +0100 | [diff] [blame] | 58 | <docker-maven-plugin.version>0.33.0</docker-maven-plugin.version> |
kjaniak | 6e2234c | 2020-02-17 23:04:25 +0100 | [diff] [blame] | 59 | <junit.version>5.5.2</junit.version> |
kjaniak | 3a1f830 | 2020-02-18 13:25:43 +0100 | [diff] [blame] | 60 | <mockito-junit-jupiter.version>2.17.0</mockito-junit-jupiter.version> |
Tomasz Golabek | ce77805 | 2020-02-14 09:14:05 +0100 | [diff] [blame] | 61 | |
| 62 | <!-- Docker --> |
| 63 | <skipDockerPush>true</skipDockerPush> |
| 64 | <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format> |
kjaniak | c45f39c | 2020-02-19 16:42:38 +0100 | [diff] [blame] | 65 | <maven-shade-plugin.version>3.2.2</maven-shade-plugin.version> |
Tomasz Golabek | ce77805 | 2020-02-14 09:14:05 +0100 | [diff] [blame] | 66 | <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 Golabek | 3b531c0 | 2020-02-12 08:56:23 +0100 | [diff] [blame] | 73 | </properties> |
| 74 | |
Pawel | 486429d | 2020-02-10 10:36:16 +0100 | [diff] [blame] | 75 | <modules> |
| 76 | <module>certService</module> |
kjaniak | 8209f7c | 2020-02-14 14:33:27 +0100 | [diff] [blame] | 77 | <module>certServiceClient</module> |
Pawel | 486429d | 2020-02-10 10:36:16 +0100 | [diff] [blame] | 78 | </modules> |
Tomasz Golabek | 3b531c0 | 2020-02-12 08:56:23 +0100 | [diff] [blame] | 79 | |
kjaniak | 85022a8 | 2020-02-14 16:27:00 +0100 | [diff] [blame] | 80 | <build> |
| 81 | <pluginManagement> |
| 82 | <plugins> |
| 83 | <plugin> |
Bartosz Gardziejewski | b9dadbd | 2020-03-18 11:31:45 +0100 | [diff] [blame] | 84 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 85 | <configuration> |
| 86 | <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation> |
| 87 | </configuration> |
| 88 | </plugin> |
| 89 | <plugin> |
kjaniak | 6e2234c | 2020-02-17 23:04:25 +0100 | [diff] [blame] | 90 | <groupId>org.springdoc</groupId> |
| 91 | <artifactId>springdoc-openapi-maven-plugin</artifactId> |
| 92 | <version>${springdoc-openapi-maven-plugin.version}</version> |
| 93 | <executions> |
| 94 | <execution> |
| 95 | <phase>integration-test</phase> |
| 96 | <goals> |
| 97 | <goal>generate</goal> |
| 98 | </goals> |
| 99 | </execution> |
| 100 | </executions> |
| 101 | <configuration> |
| 102 | <apiDocsUrl>${springdoc-openapi-maven-plugin.apiDocsUrl}</apiDocsUrl> |
Bartosz Gardziejewski | 0855846 | 2020-03-10 16:05:09 +0100 | [diff] [blame] | 103 | <outputFileName>api-docs.yaml</outputFileName> |
kjaniak | 6e2234c | 2020-02-17 23:04:25 +0100 | [diff] [blame] | 104 | <outputDir>${project.build.directory}</outputDir> |
| 105 | </configuration> |
| 106 | </plugin> |
| 107 | <plugin> |
kjaniak | 85022a8 | 2020-02-14 16:27:00 +0100 | [diff] [blame] | 108 | <groupId>org.springframework.boot</groupId> |
| 109 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 110 | <version>${spring-boot-starter.version}</version> |
kjaniak | 6e2234c | 2020-02-17 23:04:25 +0100 | [diff] [blame] | 111 | <executions> |
| 112 | <execution> |
| 113 | <goals> |
| 114 | <goal>repackage</goal> |
| 115 | </goals> |
| 116 | </execution> |
kjaniak | 6e2234c | 2020-02-17 23:04:25 +0100 | [diff] [blame] | 117 | </executions> |
kjaniak | 85022a8 | 2020-02-14 16:27:00 +0100 | [diff] [blame] | 118 | </plugin> |
| 119 | <plugin> |
kjaniak | 6e2234c | 2020-02-17 23:04:25 +0100 | [diff] [blame] | 120 | <groupId>org.apache.maven.plugins</groupId> |
kjaniak | 85022a8 | 2020-02-14 16:27:00 +0100 | [diff] [blame] | 121 | <artifactId>maven-javadoc-plugin</artifactId> |
| 122 | <version>${maven-javadoc-plugin.version}</version> |
kjaniak | 6e2234c | 2020-02-17 23:04:25 +0100 | [diff] [blame] | 123 | <configuration> |
| 124 | <quiet>true</quiet> |
| 125 | <verbose>false</verbose> |
| 126 | <useStandardDocletOptions>false</useStandardDocletOptions> |
| 127 | <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> |
| 128 | </configuration> |
| 129 | <executions> |
| 130 | <execution> |
| 131 | <id>aggregate</id> |
| 132 | <phase>site</phase> |
| 133 | <goals> |
| 134 | <goal>aggregate</goal> |
| 135 | </goals> |
| 136 | </execution> |
| 137 | <execution> |
| 138 | <id>attach-javadoc</id> |
| 139 | <goals> |
| 140 | <goal>jar</goal> |
| 141 | </goals> |
| 142 | </execution> |
| 143 | </executions> |
kjaniak | 85022a8 | 2020-02-14 16:27:00 +0100 | [diff] [blame] | 144 | </plugin> |
| 145 | <plugin> |
| 146 | <groupId>org.apache.maven.plugins</groupId> |
| 147 | <artifactId>maven-surefire-plugin</artifactId> |
| 148 | <version>${maven-surefire-plugin.version}</version> |
| 149 | </plugin> |
| 150 | </plugins> |
| 151 | </pluginManagement> |
| 152 | </build> |
| 153 | |
Tomasz Golabek | 3b531c0 | 2020-02-12 08:56:23 +0100 | [diff] [blame] | 154 | <distributionManagement> |
| 155 | <repository> |
| 156 | <id>ecomp-releases</id> |
| 157 | <name>AAF Release Repository</name> |
| 158 | <url>${nexusproxy}${releaseNexusPath}</url> |
| 159 | </repository> |
| 160 | <snapshotRepository> |
| 161 | <id>ecomp-snapshots</id> |
| 162 | <name>AAF Snapshot Repository</name> |
| 163 | <url>${nexusproxy}${snapshotNexusPath}</url> |
| 164 | </snapshotRepository> |
| 165 | <site> |
| 166 | <id>ecomp-site</id> |
| 167 | <url>dav:${nexusproxy}${sitePath}</url> |
| 168 | </site> |
| 169 | </distributionManagement> |
| 170 | |
kjaniak | 8209f7c | 2020-02-14 14:33:27 +0100 | [diff] [blame] | 171 | <dependencyManagement> |
| 172 | |
| 173 | <dependencies> |
| 174 | <dependency> |
| 175 | <groupId>org.springframework.boot</groupId> |
| 176 | <artifactId>spring-boot-starter-web</artifactId> |
| 177 | <version>${spring-boot-starter.version}</version> |
| 178 | <exclusions> |
| 179 | <exclusion> |
| 180 | <groupId>org.springframework.boot</groupId> |
| 181 | <artifactId>spring-boot-starter-logging</artifactId> |
| 182 | </exclusion> |
| 183 | </exclusions> |
| 184 | </dependency> |
| 185 | <dependency> |
| 186 | <groupId>org.springframework.boot</groupId> |
| 187 | <artifactId>spring-boot-starter-log4j2</artifactId> |
| 188 | <version>${spring-boot-starter-log4j2.version}</version> |
| 189 | </dependency> |
| 190 | <dependency> |
| 191 | <groupId>org.springframework.boot</groupId> |
| 192 | <artifactId>spring-boot-starter-test</artifactId> |
| 193 | <version>${spring-boot-starter.version}</version> |
| 194 | <scope>test</scope> |
| 195 | <exclusions> |
| 196 | <exclusion> |
| 197 | <groupId>org.junit.vintage</groupId> |
| 198 | <artifactId>junit-vintage-engine</artifactId> |
| 199 | </exclusion> |
| 200 | </exclusions> |
| 201 | </dependency> |
| 202 | <dependency> |
| 203 | <groupId>org.springframework.boot</groupId> |
| 204 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 205 | <version>${spring-boot-starter-actuator.version}</version> |
| 206 | </dependency> |
| 207 | <dependency> |
| 208 | <groupId>org.springdoc</groupId> |
| 209 | <artifactId>springdoc-openapi-ui</artifactId> |
| 210 | <version>${springdoc-openapi-ui.version}</version> |
| 211 | </dependency> |
| 212 | <dependency> |
| 213 | <groupId>org.bouncycastle</groupId> |
| 214 | <artifactId>bcpkix-jdk15on</artifactId> |
| 215 | <version>${bouncycastle.version}</version> |
| 216 | </dependency> |
| 217 | <dependency> |
| 218 | <groupId>org.bouncycastle</groupId> |
| 219 | <artifactId>bcprov-jdk15on</artifactId> |
| 220 | <version>${bouncycastle.version}</version> |
| 221 | </dependency> |
| 222 | <dependency> |
| 223 | <groupId>com.google.code.gson</groupId> |
| 224 | <artifactId>gson</artifactId> |
| 225 | <version>${gson.version}</version> |
| 226 | </dependency> |
| 227 | <dependency> |
EmmettCox | 153a7ac | 2020-02-17 13:54:05 +0000 | [diff] [blame] | 228 | <groupId>org.apache.httpcomponents</groupId> |
| 229 | <artifactId>httpclient</artifactId> |
| 230 | <version>${httpcomponents.version}</version> |
| 231 | </dependency> |
| 232 | <dependency> |
Joanna Jeremicz | ee672c3 | 2020-02-26 14:30:36 +0100 | [diff] [blame] | 233 | <groupId>org.apache.commons</groupId> |
| 234 | <artifactId>commons-lang3</artifactId> |
| 235 | <version>${commons-lang3.version}</version> |
| 236 | </dependency> |
| 237 | <dependency> |
EmmettCox | 153a7ac | 2020-02-17 13:54:05 +0000 | [diff] [blame] | 238 | <groupId>commons-io</groupId> |
| 239 | <artifactId>commons-io</artifactId> |
| 240 | <version>${commons-io.version}</version> |
| 241 | </dependency> |
| 242 | <dependency> |
kjaniak | 8209f7c | 2020-02-14 14:33:27 +0100 | [diff] [blame] | 243 | <!-- Import dependency management from Spring Boot --> |
| 244 | <groupId>org.springframework.boot</groupId> |
| 245 | <artifactId>spring-boot-dependencies</artifactId> |
| 246 | <version>${spring-boot-starter.version}</version> |
| 247 | <type>pom</type> |
| 248 | <scope>import</scope> |
| 249 | </dependency> |
| 250 | |
| 251 | <!-- Test dependecies --> |
kjaniak | 6e2234c | 2020-02-17 23:04:25 +0100 | [diff] [blame] | 252 | <dependency> |
| 253 | <groupId>org.assertj</groupId> |
| 254 | <artifactId>assertj-core</artifactId> |
| 255 | <version>${assertj-core.version}</version> |
| 256 | <scope>test</scope> |
| 257 | </dependency> |
kjaniak | 8209f7c | 2020-02-14 14:33:27 +0100 | [diff] [blame] | 258 | <dependency> |
kjaniak | 85022a8 | 2020-02-14 16:27:00 +0100 | [diff] [blame] | 259 | <groupId>org.junit.jupiter</groupId> |
Remigiusz Janeczek | d18af89 | 2020-02-28 12:27:12 +0100 | [diff] [blame] | 260 | <artifactId>junit-jupiter</artifactId> |
kjaniak | 6e2234c | 2020-02-17 23:04:25 +0100 | [diff] [blame] | 261 | <version>${junit.version}</version> |
kjaniak | 8209f7c | 2020-02-14 14:33:27 +0100 | [diff] [blame] | 262 | <scope>test</scope> |
| 263 | </dependency> |
| 264 | <dependency> |
kjaniak | 6e2234c | 2020-02-17 23:04:25 +0100 | [diff] [blame] | 265 | <groupId>org.mockito</groupId> |
| 266 | <artifactId>mockito-core</artifactId> |
| 267 | <version>${mockito-core.version}</version> |
kjaniak | 8209f7c | 2020-02-14 14:33:27 +0100 | [diff] [blame] | 268 | <scope>test</scope> |
| 269 | </dependency> |
kjaniak | 3a1f830 | 2020-02-18 13:25:43 +0100 | [diff] [blame] | 270 | <dependency> |
| 271 | <groupId>org.mockito</groupId> |
| 272 | <artifactId>mockito-junit-jupiter</artifactId> |
| 273 | <version>${mockito-junit-jupiter.version}</version> |
| 274 | <scope>test</scope> |
| 275 | </dependency> |
| 276 | |
kjaniak | 8209f7c | 2020-02-14 14:33:27 +0100 | [diff] [blame] | 277 | </dependencies> |
| 278 | </dependencyManagement> |
| 279 | |
Pawel | 486429d | 2020-02-10 10:36:16 +0100 | [diff] [blame] | 280 | </project> |