blob: 4b28469ac742c2e946455752bbdd9a69ca558346 [file] [log] [blame]
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +01001<?xml version="1.0" encoding="UTF-8"?>
Bruno Sakoto5c7c4892021-02-08 21:51:05 -05002<!--
3 ============LICENSE_START=======================================================
4 Copyright (c) 2021 Pantheon.tech.
5 Modifications Copyright (C) 2021 Bell Canada.
lukegleeson7e243c92023-04-20 15:32:12 +01006 Modifications Copyright (C) 2021-2023 Nordix Foundation
Michal Jagiello6ce84d92022-12-13 07:40:19 +00007 Modifications Copyright (C) 2022 Deutsche Telekom AG
Bruno Sakoto5c7c4892021-02-08 21:51:05 -05008 ================================================================================
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
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010023<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>
mpriyank8caa3422023-06-30 11:14:10 +010031 <version>3.3.4-SNAPSHOT</version>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010032 <relativePath>../cps-parent/pom.xml</relativePath>
33 </parent>
34
35 <artifactId>cps-application</artifactId>
36
37 <properties>
Claudio D. Gasparini4ec225c2021-02-04 14:57:39 +010038 <app>org.onap.cps.Application</app>
Rishi.Chail3f6f5b82021-03-15 13:35:57 +000039 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
ToineSiebelink73001f62021-09-17 15:07:38 +010040 <minimum-coverage>0.82</minimum-coverage>
egernug2b8268f2023-07-03 10:09:09 +010041 <base.image>${docker.pull.registry}/onap/integration-java17:12.0.0</base.image>
Renu Kumaribd35b4d2021-05-17 07:16:48 -040042 <image.tag>${project.version}-${maven.build.timestamp}</image.tag>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010043 </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>
Ruslan Kashapov0d6bbae2021-03-11 14:15:49 +020058 <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>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010066 <artifactId>spring-boot-starter-actuator</artifactId>
67 </dependency>
68 <dependency>
puthuparambil.adityab46d1372021-07-09 12:51:10 +010069 <groupId>io.micrometer</groupId>
70 <artifactId>micrometer-registry-prometheus</artifactId>
71 </dependency>
72 <dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +010073 <groupId>org.springframework.cloud</groupId>
74 <artifactId>spring-cloud-starter-sleuth</artifactId>
75 </dependency>
Ruslan Kashapov0d6bbae2021-03-11 14:15:49 +020076 <!-- T E S T D E P E N D E N C I E S -->
77 <dependency>
78 <groupId>org.springframework.security</groupId>
79 <artifactId>spring-security-test</artifactId>
80 <scope>test</scope>
81 </dependency>
82 <dependency>
83 <groupId>org.codehaus.groovy</groupId>
84 <artifactId>groovy</artifactId>
85 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.spockframework</groupId>
89 <artifactId>spock-core</artifactId>
90 <scope>test</scope>
91 </dependency>
92 <dependency>
93 <groupId>org.spockframework</groupId>
94 <artifactId>spock-spring</artifactId>
95 <scope>test</scope>
96 </dependency>
97 <dependency>
98 <groupId>cglib</groupId>
99 <artifactId>cglib-nodep</artifactId>
100 <scope>test</scope>
101 </dependency>
102 <dependency>
103 <groupId>org.springframework.boot</groupId>
104 <artifactId>spring-boot-starter-test</artifactId>
105 <scope>test</scope>
106 <exclusions>
107 <exclusion>
108 <groupId>org.junit.vintage</groupId>
109 <artifactId>junit-vintage-engine</artifactId>
110 </exclusion>
111 </exclusions>
112 </dependency>
DylanB95ESTdb1f3782021-06-22 16:57:16 +0100113 <dependency>
114 <groupId>com.tngtech.archunit</groupId>
115 <artifactId>archunit-junit5</artifactId>
116 </dependency>
Michal Jagiello6ce84d92022-12-13 07:40:19 +0000117 <dependency>
118 <groupId>com.fasterxml.jackson.dataformat</groupId>
119 <artifactId>jackson-dataformat-xml</artifactId>
120 </dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +0100121 </dependencies>
122
123 <build>
124 <pluginManagement>
125 <plugins>
126 <plugin>
127 <groupId>com.google.cloud.tools</groupId>
128 <artifactId>jib-maven-plugin</artifactId>
egernug2b8268f2023-07-03 10:09:09 +0100129 <version>3.3.2</version>
Claudio D. Gasparini4ec225c2021-02-04 14:57:39 +0100130 <configuration>
131 <container>
132 <mainClass>${app}</mainClass>
133 <creationTime>USE_CURRENT_TIMESTAMP</creationTime>
134 </container>
135 <from>
136 <image>${base.image}</image>
137 </from>
138 <to>
Ruslan Kashapovaad22402021-02-23 10:08:00 +0200139 <tags>
140 <tag>latest</tag>
141 </tags>
ToineSiebelinka401e722021-06-30 08:38:51 +0100142 <image>${docker.push.registry}/onap/${image.name}:${image.tag}</image>
Claudio D. Gasparini4ec225c2021-02-04 14:57:39 +0100143 </to>
144 </configuration>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +0100145 <executions>
146 <execution>
147 <phase>package</phase>
148 <id>build</id>
149 <goals>
150 <goal>dockerBuild</goal>
151 </goals>
152 </execution>
153 <execution>
154 <phase>deploy</phase>
155 <id>buildAndPush</id>
156 <goals>
157 <goal>build</goal>
158 </goals>
159 </execution>
160 </executions>
161 </plugin>
162 </plugins>
163 </pluginManagement>
164 <plugins>
165 <plugin>
166 <groupId>org.springframework.boot</groupId>
167 <artifactId>spring-boot-maven-plugin</artifactId>
168 </plugin>
169 </plugins>
170 </build>
171 <profiles>
172 <profile>
173 <id>cps-docker</id>
174 <activation>
175 <activeByDefault>false</activeByDefault>
176 </activation>
Claudio D. Gasparini6e603802021-02-20 18:56:47 +0100177
178 <properties>
179 <image.name>cps-service</image.name>
180 </properties>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +0100181 <dependencies>
182 <dependency>
183 <groupId>${project.groupId}</groupId>
184 <artifactId>cps-rest</artifactId>
185 </dependency>
Ruslan Kashapov8fe579d2021-03-04 17:13:00 +0200186 <dependency>
187 <groupId>${project.groupId}</groupId>
188 <artifactId>cps-ri</artifactId>
189 </dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +0100190 </dependencies>
Claudio D. Gasparini6e603802021-02-20 18:56:47 +0100191 <build>
192 <plugins>
193 <plugin>
194 <groupId>com.google.cloud.tools</groupId>
195 <artifactId>jib-maven-plugin</artifactId>
196 </plugin>
197 </plugins>
198 </build>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +0100199 </profile>
200 <profile>
tragait34a94b92021-03-30 12:02:27 +0100201 <id>ncmp-docker</id>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +0100202 <activation>
203 <activeByDefault>false</activeByDefault>
204 </activation>
205
206 <properties>
tragait34a94b92021-03-30 12:02:27 +0100207 <image.name>cps-ncmp</image.name>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +0100208 </properties>
209
210 <dependencies>
211 <dependency>
212 <groupId>${project.groupId}</groupId>
tragait34a94b92021-03-30 12:02:27 +0100213 <artifactId>cps-ncmp-rest</artifactId>
214 <version>${project.version}</version>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +0100215 </dependency>
Ruslan Kashapov8fe579d2021-03-04 17:13:00 +0200216 <dependency>
217 <groupId>${project.groupId}</groupId>
218 <artifactId>cps-ri</artifactId>
219 </dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +0100220 </dependencies>
Claudio D. Gasparini6e603802021-02-20 18:56:47 +0100221 <build>
222 <plugins>
223 <plugin>
224 <groupId>com.google.cloud.tools</groupId>
225 <artifactId>jib-maven-plugin</artifactId>
226 </plugin>
227 </plugins>
228 </build>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +0100229 </profile>
230 <profile>
tragait34a94b92021-03-30 12:02:27 +0100231 <id>cps-ncmp-docker</id>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +0100232 <activation>
Claudio D. Gasparini6e603802021-02-20 18:56:47 +0100233 <activeByDefault>true</activeByDefault>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +0100234 </activation>
235
236 <properties>
tragait34a94b92021-03-30 12:02:27 +0100237 <image.name>cps-and-ncmp</image.name>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +0100238 </properties>
239
240 <dependencies>
241 <dependency>
242 <groupId>${project.groupId}</groupId>
243 <artifactId>cps-rest</artifactId>
244 </dependency>
245 <dependency>
246 <groupId>${project.groupId}</groupId>
tragait34a94b92021-03-30 12:02:27 +0100247 <artifactId>cps-ncmp-rest</artifactId>
248 <version>${project.version}</version>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +0100249 </dependency>
Ruslan Kashapov8fe579d2021-03-04 17:13:00 +0200250 <dependency>
251 <groupId>${project.groupId}</groupId>
252 <artifactId>cps-ri</artifactId>
253 </dependency>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +0100254 </dependencies>
Claudio D. Gasparini6e603802021-02-20 18:56:47 +0100255 <build>
256 <plugins>
257 <plugin>
258 <groupId>com.google.cloud.tools</groupId>
259 <artifactId>jib-maven-plugin</artifactId>
egernug2b8268f2023-07-03 10:09:09 +0100260 <version>3.3.2</version>
Claudio D. Gasparini6e603802021-02-20 18:56:47 +0100261 </plugin>
262 </plugins>
263 </build>
Claudio D. Gasparinib77bf252021-01-28 15:36:37 +0100264 </profile>
265 </profiles>
lukegleeson15b93e72021-07-07 15:25:30 +0100266</project>