Merge "Use DB for checking Alternate IDs"
[cps.git] / cps-application / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   Copyright (c) 2021 Pantheon.tech.
5   Modifications Copyright (C) 2021 Bell Canada.
6   Modifications Copyright (C) 2021-2024 Nordix Foundation
7   Modifications Copyright (C) 2022 Deutsche Telekom AG
8   ================================================================================
9   Licensed under the Apache License, Version 2.0 (the "License");
10   you may not use this file except in compliance with the License.
11   You may obtain a copy of the License at
12
13         http://www.apache.org/licenses/LICENSE-2.0
14
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20   ============LICENSE_END=========================================================
21 -->
22
23 <project xmlns="http://maven.apache.org/POM/4.0.0"
24          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
26     <modelVersion>4.0.0</modelVersion>
27
28     <parent>
29         <groupId>org.onap.cps</groupId>
30         <artifactId>cps-parent</artifactId>
31         <version>3.4.4-SNAPSHOT</version>
32         <relativePath>../cps-parent/pom.xml</relativePath>
33     </parent>
34
35     <artifactId>cps-application</artifactId>
36
37     <properties>
38         <app>org.onap.cps.Application</app>
39         <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
40         <minimum-coverage>0.86</minimum-coverage>
41         <base.image>${docker.pull.registry}/onap/integration-java17:12.0.0</base.image>
42         <image.tag>${project.version}-${maven.build.timestamp}</image.tag>
43     </properties>
44
45     <dependencies>
46         <dependency>
47             <groupId>org.springframework.boot</groupId>
48             <artifactId>spring-boot-starter-web</artifactId>
49             <exclusions>
50                 <exclusion>
51                     <groupId>org.springframework.boot</groupId>
52                     <artifactId>spring-boot-starter-tomcat</artifactId>
53                 </exclusion>
54             </exclusions>
55         </dependency>
56         <dependency>
57             <groupId>org.springframework.boot</groupId>
58             <artifactId>spring-boot-starter-jetty</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.springframework.boot</groupId>
62             <artifactId>spring-boot-starter-security</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.springframework.boot</groupId>
66             <artifactId>spring-boot-starter-actuator</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.springdoc</groupId>
70             <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.eclipse.jetty</groupId>
74             <artifactId>jetty-server</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.eclipse.jetty</groupId>
78             <artifactId>jetty-http</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>jakarta.servlet</groupId>
82             <artifactId>jakarta.servlet-api</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>io.micrometer</groupId>
86             <artifactId>micrometer-registry-prometheus</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>io.micrometer</groupId>
90             <artifactId>micrometer-tracing-bridge-brave</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>com.fasterxml.jackson.dataformat</groupId>
94             <artifactId>jackson-dataformat-xml</artifactId>
95         </dependency>
96
97         <!-- T E S T   D E P E N D E N C I E S -->
98         <dependency>
99             <groupId>org.springframework.security</groupId>
100             <artifactId>spring-security-test</artifactId>
101             <scope>test</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.codehaus.groovy</groupId>
105             <artifactId>groovy</artifactId>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.spockframework</groupId>
110             <artifactId>spock-core</artifactId>
111             <scope>test</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.spockframework</groupId>
115             <artifactId>spock-spring</artifactId>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>cglib</groupId>
120             <artifactId>cglib-nodep</artifactId>
121             <scope>test</scope>
122         </dependency>
123         <dependency>
124             <groupId>com.tngtech.archunit</groupId>
125             <artifactId>archunit-junit5</artifactId>
126         </dependency>
127         <dependency>
128             <groupId>org.springframework.boot</groupId>
129             <artifactId>spring-boot-starter-test</artifactId>
130             <scope>test</scope>
131             <exclusions>
132                 <exclusion>
133                     <groupId>org.junit.vintage</groupId>
134                     <artifactId>junit-vintage-engine</artifactId>
135                 </exclusion>
136             </exclusions>
137         </dependency>
138
139     </dependencies>
140
141     <build>
142         <pluginManagement>
143             <plugins>
144                 <plugin>
145                     <groupId>com.google.cloud.tools</groupId>
146                     <artifactId>jib-maven-plugin</artifactId>
147                     <version>3.3.2</version>
148                     <configuration>
149                         <container>
150                             <mainClass>${app}</mainClass>
151                             <creationTime>USE_CURRENT_TIMESTAMP</creationTime>
152                         </container>
153                         <from>
154                             <image>${base.image}</image>
155                         </from>
156                         <to>
157                             <tags>
158                                 <tag>latest</tag>
159                             </tags>
160                             <image>${docker.push.registry}/onap/${image.name}:${image.tag}</image>
161                         </to>
162                     </configuration>
163                     <executions>
164                         <execution>
165                             <phase>package</phase>
166                             <id>build</id>
167                             <goals>
168                                 <goal>dockerBuild</goal>
169                             </goals>
170                         </execution>
171                         <execution>
172                             <phase>deploy</phase>
173                             <id>buildAndPush</id>
174                             <goals>
175                                 <goal>build</goal>
176                             </goals>
177                         </execution>
178                     </executions>
179                 </plugin>
180             </plugins>
181         </pluginManagement>
182         <plugins>
183             <plugin>
184                 <groupId>org.springframework.boot</groupId>
185                 <artifactId>spring-boot-maven-plugin</artifactId>
186                 <executions>
187                     <execution>
188                         <goals>
189                             <goal>repackage</goal>
190                         </goals>
191                         <configuration>
192                             <classifier>springboot</classifier>
193                         </configuration>
194                     </execution>
195                 </executions>
196             </plugin>
197         </plugins>
198     </build>
199     <profiles>
200         <profile>
201             <id>cps-docker</id>
202             <activation>
203                 <activeByDefault>false</activeByDefault>
204             </activation>
205
206             <properties>
207                 <image.name>cps-service</image.name>
208             </properties>
209             <dependencies>
210                 <dependency>
211                     <groupId>${project.groupId}</groupId>
212                     <artifactId>cps-rest</artifactId>
213                 </dependency>
214                 <dependency>
215                     <groupId>${project.groupId}</groupId>
216                     <artifactId>cps-ri</artifactId>
217                 </dependency>
218             </dependencies>
219             <build>
220                 <plugins>
221                     <plugin>
222                         <groupId>com.google.cloud.tools</groupId>
223                         <artifactId>jib-maven-plugin</artifactId>
224                     </plugin>
225                 </plugins>
226             </build>
227         </profile>
228         <profile>
229             <id>ncmp-docker</id>
230             <activation>
231                 <activeByDefault>false</activeByDefault>
232             </activation>
233
234             <properties>
235                 <image.name>cps-ncmp</image.name>
236             </properties>
237
238             <dependencies>
239                 <dependency>
240                     <groupId>${project.groupId}</groupId>
241                     <artifactId>cps-ncmp-rest</artifactId>
242                     <version>${project.version}</version>
243                 </dependency>
244                 <dependency>
245                     <groupId>${project.groupId}</groupId>
246                     <artifactId>cps-ri</artifactId>
247                 </dependency>
248             </dependencies>
249             <build>
250                 <plugins>
251                     <plugin>
252                         <groupId>com.google.cloud.tools</groupId>
253                         <artifactId>jib-maven-plugin</artifactId>
254                     </plugin>
255                 </plugins>
256             </build>
257         </profile>
258         <profile>
259             <id>cps-ncmp-docker</id>
260             <activation>
261                 <activeByDefault>true</activeByDefault>
262             </activation>
263
264             <properties>
265                 <image.name>cps-and-ncmp</image.name>
266             </properties>
267
268             <dependencies>
269                 <dependency>
270                     <groupId>${project.groupId}</groupId>
271                     <artifactId>cps-rest</artifactId>
272                 </dependency>
273                 <dependency>
274                     <groupId>${project.groupId}</groupId>
275                     <artifactId>cps-ncmp-rest</artifactId>
276                     <version>${project.version}</version>
277                 </dependency>
278                 <dependency>
279                     <groupId>${project.groupId}</groupId>
280                     <artifactId>cps-ri</artifactId>
281                 </dependency>
282             </dependencies>
283             <build>
284                 <plugins>
285                     <plugin>
286                         <groupId>com.google.cloud.tools</groupId>
287                         <artifactId>jib-maven-plugin</artifactId>
288                         <version>3.3.2</version>
289                     </plugin>
290                 </plugins>
291             </build>
292         </profile>
293     </profiles>
294 </project>