Merge "Fix for not running tests"
[oom/platform/cert-service.git] / certService / 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     <parent>
19         <groupId>org.onap.aaf.certservice</groupId>
20         <artifactId>aaf-certservice</artifactId>
21         <version>1.0.0-SNAPSHOT</version>
22     </parent>
23     <artifactId>aaf-certservice-api</artifactId>
24     <version>1.0.0-SNAPSHOT</version>
25     <name>aaf-certservice-api</name>
26     <description>AAF Certification Service Api</description>
27     <packaging>jar</packaging>
28
29     <dependencies>
30         <dependency>
31             <groupId>org.springframework.boot</groupId>
32             <artifactId>spring-boot-starter-web</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.springframework.boot</groupId>
36             <artifactId>spring-boot-starter-log4j2</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.springframework.boot</groupId>
40             <artifactId>spring-boot-starter-test</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.mockito</groupId>
44             <artifactId>mockito-core</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.springframework.boot</groupId>
48             <artifactId>spring-boot-starter-actuator</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.springdoc</groupId>
52             <artifactId>springdoc-openapi-ui</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.bouncycastle</groupId>
56             <artifactId>bcpkix-jdk15on</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.bouncycastle</groupId>
60             <artifactId>bcprov-jdk15on</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>com.google.code.gson</groupId>
64             <artifactId>gson</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.assertj</groupId>
68             <artifactId>assertj-core</artifactId>
69         </dependency>
70     </dependencies>
71
72     <build>
73         <plugins>
74             <plugin>
75                 <groupId>org.springframework.boot</groupId>
76                 <artifactId>spring-boot-maven-plugin</artifactId>
77             </plugin>
78             <plugin>
79                 <groupId>org.apache.maven.plugins</groupId>
80                 <artifactId>maven-surefire-plugin</artifactId>
81             </plugin>
82             <plugin>
83                 <groupId>org.apache.maven.plugins</groupId>
84                 <artifactId>maven-javadoc-plugin</artifactId>
85             </plugin>
86             <plugin>
87                 <groupId>org.springdoc</groupId>
88                 <artifactId>springdoc-openapi-maven-plugin</artifactId>
89             </plugin>
90         </plugins>
91     </build>
92
93     <profiles>
94         <profile>
95             <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>
103             <id>docker</id>
104             <activation>
105                 <activeByDefault>false</activeByDefault>
106             </activation>
107             <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>
112             <build>
113                 <plugins>
114                     <plugin>
115                         <groupId>io.fabric8</groupId>
116                         <artifactId>docker-maven-plugin</artifactId>
117                         <version>${docker-maven-plugin.version}</version>
118                         <executions>
119                             <execution>
120                                 <id>docker-build-image</id>
121                                 <phase>package</phase>
122                                 <goals>
123                                     <goal>build</goal>
124                                 </goals>
125                             </execution>
126                             <execution>
127                                 <id>docker-push-image</id>
128                                 <phase>deploy</phase>
129                                 <goals>
130                                     <goal>push</goal>
131                                 </goals>
132                             </execution>
133                         </executions>
134                         <configuration>
135                             <skipPush>${skipDockerPush}</skipPush>
136                             <verbose>true</verbose>
137                             <imagePullPolicy>IfNotPresent</imagePullPolicy>
138                             <images>
139                                 <image>
140                                     <alias>${project.artifactId}</alias>
141                                     <name>${docker-image.namespace}/${docker-image.name}
142                                     </name>
143                                     <registry>${docker-image.registry}</registry>
144                                     <build>
145                                         <dockerFileDir>${project.basedir}</dockerFileDir>
146                                         <tags>
147                                             <tag>${project.version}-${maven.build.timestamp}Z</tag>
148                                             <tag>${project.version}</tag>
149                                             <tag>${docker-image.latest}</tag>
150                                         </tags>
151                                     </build>
152                                 </image>
153                             </images>
154                         </configuration>
155                     </plugin>
156                 </plugins>
157             </build>
158         </profile>
159     </profiles>
160
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
178 </project>