blob: 51588f1654c405da6ea3412a8944cc3509cbec10 [file] [log] [blame]
Pawel Kasperkiewicz50f42bd2020-02-04 14:21:29 +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 <parent>
Bartosz Gardziejewskibeecacb2020-02-13 07:31:47 +010019 <groupId>org.onap.aaf.certservice</groupId>
Bartosz Gardziejewski5d71eb72020-02-13 08:17:55 +010020 <artifactId>aaf-certservice</artifactId>
Bartosz Gardziejewskidd700fc2020-02-13 08:44:03 +010021 <version>1.0.0-SNAPSHOT</version>
Pawel Kasperkiewicz50f42bd2020-02-04 14:21:29 +010022 </parent>
Bartosz Gardziejewski5d71eb72020-02-13 08:17:55 +010023 <artifactId>aaf-certservice-api</artifactId>
Bartosz Gardziejewskidd700fc2020-02-13 08:44:03 +010024 <version>1.0.0-SNAPSHOT</version>
Bartosz Gardziejewski5d71eb72020-02-13 08:17:55 +010025 <name>aaf-certservice-api</name>
26 <description>AAF Certification Service Api</description>
Pawel Kasperkiewicz50f42bd2020-02-04 14:21:29 +010027 <packaging>jar</packaging>
28
Pawel Kasperkiewicz50f42bd2020-02-04 14:21:29 +010029 <dependencies>
30 <dependency>
31 <groupId>org.springframework.boot</groupId>
32 <artifactId>spring-boot-starter-web</artifactId>
Pawel Kasperkiewicz68016582020-02-06 11:54:06 +010033 </dependency>
34 <dependency>
35 <groupId>org.springframework.boot</groupId>
36 <artifactId>spring-boot-starter-log4j2</artifactId>
Pawel Kasperkiewicz50f42bd2020-02-04 14:21:29 +010037 </dependency>
38 <dependency>
39 <groupId>org.springframework.boot</groupId>
40 <artifactId>spring-boot-starter-test</artifactId>
Pawel Kasperkiewicz50f42bd2020-02-04 14:21:29 +010041 </dependency>
42 <dependency>
43 <groupId>org.mockito</groupId>
44 <artifactId>mockito-core</artifactId>
Pawel Kasperkiewicz50f42bd2020-02-04 14:21:29 +010045 </dependency>
Paweldb979302020-02-05 11:24:54 +010046 <dependency>
47 <groupId>org.springframework.boot</groupId>
48 <artifactId>spring-boot-starter-actuator</artifactId>
Paweldb979302020-02-05 11:24:54 +010049 </dependency>
Bartosz Gardziejewski4dd87392020-02-07 08:27:34 +010050 <dependency>
51 <groupId>org.springdoc</groupId>
52 <artifactId>springdoc-openapi-ui</artifactId>
Bartosz Gardziejewski4dd87392020-02-07 08:27:34 +010053 </dependency>
Bartosz Gardziejewskibddd4f02020-02-11 13:27:08 +010054 <dependency>
55 <groupId>org.bouncycastle</groupId>
56 <artifactId>bcpkix-jdk15on</artifactId>
Bartosz Gardziejewskibddd4f02020-02-11 13:27:08 +010057 </dependency>
58 <dependency>
59 <groupId>org.bouncycastle</groupId>
60 <artifactId>bcprov-jdk15on</artifactId>
Bartosz Gardziejewskibddd4f02020-02-11 13:27:08 +010061 </dependency>
Bartosz Gardziejewski1d900882020-02-12 11:53:42 +010062 <dependency>
63 <groupId>com.google.code.gson</groupId>
64 <artifactId>gson</artifactId>
kjaniak8209f7c2020-02-14 14:33:27 +010065 </dependency>
66 <dependency>
67 <groupId>org.assertj</groupId>
68 <artifactId>assertj-core</artifactId>
Bartosz Gardziejewski1d900882020-02-12 11:53:42 +010069 </dependency>
Pawel Kasperkiewicz50f42bd2020-02-04 14:21:29 +010070 </dependencies>
71
72 <build>
Pawel Kasperkiewicz50f42bd2020-02-04 14:21:29 +010073 <plugins>
74 <plugin>
75 <groupId>org.springframework.boot</groupId>
76 <artifactId>spring-boot-maven-plugin</artifactId>
Pawel Kasperkiewicz50f42bd2020-02-04 14:21:29 +010077 </plugin>
78 <plugin>
kjaniak6e2234c2020-02-17 23:04:25 +010079 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-surefire-plugin</artifactId>
81 </plugin>
82 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
Pawel Kasperkiewicz50f42bd2020-02-04 14:21:29 +010084 <artifactId>maven-javadoc-plugin</artifactId>
Pawel Kasperkiewicz50f42bd2020-02-04 14:21:29 +010085 </plugin>
Bartosz Gardziejewskic88b66b2020-02-12 07:49:02 +010086 <plugin>
87 <groupId>org.springdoc</groupId>
88 <artifactId>springdoc-openapi-maven-plugin</artifactId>
Bartosz Gardziejewskic88b66b2020-02-12 07:49:02 +010089 </plugin>
Pawel Kasperkiewicz50f42bd2020-02-04 14:21:29 +010090 </plugins>
91 </build>
92
Pawel8b1072c2020-02-10 13:03:38 +010093 <profiles>
94 <profile>
Tomasz Golabekb9dabed2020-02-11 09:12:09 +010095 <id>docker-staging</id>
96 <properties>
97 <docker.tag>${project.version}-STAGING-${maven.build.timestamp}</docker.tag>
98 <docker.latest.tag>${project.version}-STAGING-latest</docker.latest.tag>
99 </properties>
100 </profile>
101
102 <profile>
Pawel8b1072c2020-02-10 13:03:38 +0100103 <id>docker</id>
104 <activation>
105 <activeByDefault>false</activeByDefault>
106 </activation>
Tomasz Golabek3b554792020-02-13 12:07:35 +0100107 <properties>
108 <os.detected.name>linux</os.detected.name>
109 <os.detected.arch>x86_64</os.detected.arch>
110 <os.detected.classifier>${os.detected.name}-${os.detected.arch}</os.detected.classifier>
111 </properties>
Pawel8b1072c2020-02-10 13:03:38 +0100112 <build>
113 <plugins>
114 <plugin>
115 <groupId>io.fabric8</groupId>
116 <artifactId>docker-maven-plugin</artifactId>
Tomasz Golabekce778052020-02-14 09:14:05 +0100117 <version>${docker-maven-plugin.version}</version>
Pawel8b1072c2020-02-10 13:03:38 +0100118 <executions>
119 <execution>
Tomasz Golabek3b554792020-02-13 12:07:35 +0100120 <id>docker-build-image</id>
121 <phase>package</phase>
Pawel8b1072c2020-02-10 13:03:38 +0100122 <goals>
Tomasz Golabekb9dabed2020-02-11 09:12:09 +0100123 <goal>build</goal>
Pawel8b1072c2020-02-10 13:03:38 +0100124 </goals>
125 </execution>
Tomasz Golabekb9dabed2020-02-11 09:12:09 +0100126 <execution>
Tomasz Golabek3b554792020-02-13 12:07:35 +0100127 <id>docker-push-image</id>
Tomasz Golabekb9dabed2020-02-11 09:12:09 +0100128 <phase>deploy</phase>
129 <goals>
130 <goal>push</goal>
131 </goals>
Tomasz Golabekb9dabed2020-02-11 09:12:09 +0100132 </execution>
Pawel8b1072c2020-02-10 13:03:38 +0100133 </executions>
134 <configuration>
Tomasz Golabek3b554792020-02-13 12:07:35 +0100135 <skipPush>${skipDockerPush}</skipPush>
136 <verbose>true</verbose>
137 <imagePullPolicy>IfNotPresent</imagePullPolicy>
Pawel8b1072c2020-02-10 13:03:38 +0100138 <images>
139 <image>
Tomasz Golabek3b554792020-02-13 12:07:35 +0100140 <alias>${project.artifactId}</alias>
141 <name>${docker-image.namespace}/${docker-image.name}
142 </name>
143 <registry>${docker-image.registry}</registry>
Pawel8b1072c2020-02-10 13:03:38 +0100144 <build>
Tomasz Golabek3b554792020-02-13 12:07:35 +0100145 <dockerFileDir>${project.basedir}</dockerFileDir>
Tomasz Golabekb9dabed2020-02-11 09:12:09 +0100146 <tags>
Tomasz Golabek3b554792020-02-13 12:07:35 +0100147 <tag>${project.version}-${maven.build.timestamp}Z</tag>
148 <tag>${project.version}</tag>
149 <tag>${docker-image.latest}</tag>
Tomasz Golabekb9dabed2020-02-11 09:12:09 +0100150 </tags>
Pawel8b1072c2020-02-10 13:03:38 +0100151 </build>
Pawel8b1072c2020-02-10 13:03:38 +0100152 </image>
153 </images>
154 </configuration>
155 </plugin>
156 </plugins>
157 </build>
158 </profile>
159 </profiles>
Tomasz Golabek3b531c02020-02-12 08:56:23 +0100160
161 <distributionManagement>
162 <repository>
163 <id>ecomp-releases</id>
164 <name>AAF Release Repository</name>
165 <url>${nexusproxy}${releaseNexusPath}</url>
166 </repository>
167 <snapshotRepository>
168 <id>ecomp-snapshots</id>
169 <name>AAF Snapshot Repository</name>
170 <url>${nexusproxy}${snapshotNexusPath}</url>
171 </snapshotRepository>
172 <site>
173 <id>ecomp-site</id>
174 <url>dav:${nexusproxy}${sitePath}</url>
175 </site>
176 </distributionManagement>
177
Pawel Kasperkiewicz50f42bd2020-02-04 14:21:29 +0100178</project>