Add of dummy test
[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                 <executions>
78                     <execution>
79                         <goals>
80                             <goal>repackage</goal>
81                         </goals>
82                     </execution>
83                     <execution>
84                         <id>pre-integration-test</id>
85                         <goals>
86                             <goal>start</goal>
87                         </goals>
88                     </execution>
89                     <execution>
90                         <id>post-integration-test</id>
91                         <goals>
92                             <goal>stop</goal>
93                         </goals>
94                     </execution>
95                 </executions>
96             </plugin>
97             <plugin>
98                 <artifactId>maven-javadoc-plugin</artifactId>
99                 <configuration>
100                     <quiet>true</quiet>
101                     <verbose>false</verbose>
102                     <useStandardDocletOptions>false</useStandardDocletOptions>
103                     <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
104                 </configuration>
105                 <executions>
106                     <execution>
107                         <id>aggregate</id>
108                         <phase>site</phase>
109                         <goals>
110                             <goal>aggregate</goal>
111                         </goals>
112                     </execution>
113                     <execution>
114                         <id>attach-javadoc</id>
115                         <goals>
116                             <goal>jar</goal>
117                         </goals>
118                     </execution>
119                 </executions>
120             </plugin>
121             <plugin>
122                 <groupId>org.springdoc</groupId>
123                 <artifactId>springdoc-openapi-maven-plugin</artifactId>
124                 <version>${springdoc-openapi-maven-plugin.version}</version>
125                 <executions>
126                     <execution>
127                         <phase>integration-test</phase>
128                         <goals>
129                             <goal>generate</goal>
130                         </goals>
131                     </execution>
132                 </executions>
133                 <configuration>
134                     <apiDocsUrl>${springdoc-openapi-maven-plugin.apiDocsUrl}</apiDocsUrl>
135                     <outputFileName>api-docs.json</outputFileName>
136                     <outputDir>${project.build.directory}</outputDir>
137                 </configuration>
138             </plugin>
139         </plugins>
140     </build>
141
142     <profiles>
143         <profile>
144             <id>docker-staging</id>
145             <properties>
146                 <docker.tag>${project.version}-STAGING-${maven.build.timestamp}</docker.tag>
147                 <docker.latest.tag>${project.version}-STAGING-latest</docker.latest.tag>
148             </properties>
149         </profile>
150
151         <profile>
152             <id>docker</id>
153             <activation>
154                 <activeByDefault>false</activeByDefault>
155             </activation>
156             <properties>
157                 <os.detected.name>linux</os.detected.name>
158                 <os.detected.arch>x86_64</os.detected.arch>
159                 <os.detected.classifier>${os.detected.name}-${os.detected.arch}</os.detected.classifier>
160             </properties>
161             <build>
162                 <plugins>
163                     <plugin>
164                         <groupId>io.fabric8</groupId>
165                         <artifactId>docker-maven-plugin</artifactId>
166                         <version>${docker-maven-plugin.version}</version>
167                         <executions>
168                             <execution>
169                                 <id>docker-build-image</id>
170                                 <phase>package</phase>
171                                 <goals>
172                                     <goal>build</goal>
173                                 </goals>
174                             </execution>
175                             <execution>
176                                 <id>docker-push-image</id>
177                                 <phase>deploy</phase>
178                                 <goals>
179                                     <goal>push</goal>
180                                 </goals>
181                             </execution>
182                         </executions>
183                         <configuration>
184                             <skipPush>${skipDockerPush}</skipPush>
185                             <verbose>true</verbose>
186                             <imagePullPolicy>IfNotPresent</imagePullPolicy>
187                             <images>
188                                 <image>
189                                     <alias>${project.artifactId}</alias>
190                                     <name>${docker-image.namespace}/${docker-image.name}
191                                     </name>
192                                     <registry>${docker-image.registry}</registry>
193                                     <build>
194                                         <dockerFileDir>${project.basedir}</dockerFileDir>
195                                         <tags>
196                                             <tag>${project.version}-${maven.build.timestamp}Z</tag>
197                                             <tag>${project.version}</tag>
198                                             <tag>${docker-image.latest}</tag>
199                                         </tags>
200                                     </build>
201                                 </image>
202                             </images>
203                         </configuration>
204                     </plugin>
205                 </plugins>
206             </build>
207         </profile>
208     </profiles>
209
210     <distributionManagement>
211         <repository>
212             <id>ecomp-releases</id>
213             <name>AAF Release Repository</name>
214             <url>${nexusproxy}${releaseNexusPath}</url>
215         </repository>
216         <snapshotRepository>
217             <id>ecomp-snapshots</id>
218             <name>AAF Snapshot Repository</name>
219             <url>${nexusproxy}${snapshotNexusPath}</url>
220         </snapshotRepository>
221         <site>
222             <id>ecomp-site</id>
223             <url>dav:${nexusproxy}${sitePath}</url>
224         </site>
225     </distributionManagement>
226
227 </project>