Revert "Migrate CPS to Spring-boot 3.0"
[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-2023 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.3.7-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>io.micrometer</groupId>
70             <artifactId>micrometer-registry-prometheus</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.springframework.cloud</groupId>
74             <artifactId>spring-cloud-starter-sleuth</artifactId>
75         </dependency>
76         <!-- 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>
113         <dependency>
114             <groupId>com.tngtech.archunit</groupId>
115             <artifactId>archunit-junit5</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>com.fasterxml.jackson.dataformat</groupId>
119             <artifactId>jackson-dataformat-xml</artifactId>
120         </dependency>
121     </dependencies>
122
123     <build>
124         <pluginManagement>
125             <plugins>
126                 <plugin>
127                     <groupId>com.google.cloud.tools</groupId>
128                     <artifactId>jib-maven-plugin</artifactId>
129                     <version>3.3.2</version>
130                     <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>
139                             <tags>
140                                 <tag>latest</tag>
141                             </tags>
142                             <image>${docker.push.registry}/onap/${image.name}:${image.tag}</image>
143                         </to>
144                     </configuration>
145                     <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>
177
178             <properties>
179                 <image.name>cps-service</image.name>
180             </properties>
181             <dependencies>
182                 <dependency>
183                     <groupId>${project.groupId}</groupId>
184                     <artifactId>cps-rest</artifactId>
185                 </dependency>
186                 <dependency>
187                     <groupId>${project.groupId}</groupId>
188                     <artifactId>cps-ri</artifactId>
189                 </dependency>
190             </dependencies>
191             <build>
192                 <plugins>
193                     <plugin>
194                         <groupId>com.google.cloud.tools</groupId>
195                         <artifactId>jib-maven-plugin</artifactId>
196                     </plugin>
197                 </plugins>
198             </build>
199         </profile>
200         <profile>
201             <id>ncmp-docker</id>
202             <activation>
203                 <activeByDefault>false</activeByDefault>
204             </activation>
205
206             <properties>
207                 <image.name>cps-ncmp</image.name>
208             </properties>
209
210             <dependencies>
211                 <dependency>
212                     <groupId>${project.groupId}</groupId>
213                     <artifactId>cps-ncmp-rest</artifactId>
214                     <version>${project.version}</version>
215                 </dependency>
216                 <dependency>
217                     <groupId>${project.groupId}</groupId>
218                     <artifactId>cps-ri</artifactId>
219                 </dependency>
220             </dependencies>
221             <build>
222                 <plugins>
223                     <plugin>
224                         <groupId>com.google.cloud.tools</groupId>
225                         <artifactId>jib-maven-plugin</artifactId>
226                     </plugin>
227                 </plugins>
228             </build>
229         </profile>
230         <profile>
231             <id>cps-ncmp-docker</id>
232             <activation>
233                 <activeByDefault>true</activeByDefault>
234             </activation>
235
236             <properties>
237                 <image.name>cps-and-ncmp</image.name>
238             </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>
247                     <artifactId>cps-ncmp-rest</artifactId>
248                     <version>${project.version}</version>
249                 </dependency>
250                 <dependency>
251                     <groupId>${project.groupId}</groupId>
252                     <artifactId>cps-ri</artifactId>
253                 </dependency>
254             </dependencies>
255             <build>
256                 <plugins>
257                     <plugin>
258                         <groupId>com.google.cloud.tools</groupId>
259                         <artifactId>jib-maven-plugin</artifactId>
260                         <version>3.3.2</version>
261                     </plugin>
262                 </plugins>
263             </build>
264         </profile>
265     </profiles>
266 </project>