Revert "Migrate CPS to Spring-boot 3.0"
[cps.git] / cps-service / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   Copyright (C) 2021-2023 Nordix Foundation
5   Modifications Copyright (C) 2021 Bell Canada.
6   Modifications Copyright (C) 2021 Pantheon.tech
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
21   SPDX-License-Identifier: Apache-2.0
22   ============LICENSE_END=========================================================
23 -->
24
25 <project xmlns="http://maven.apache.org/POM/4.0.0"
26   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
27   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
28   <modelVersion>4.0.0</modelVersion>
29   <parent>
30     <groupId>org.onap.cps</groupId>
31     <artifactId>cps-parent</artifactId>
32     <version>3.3.7-SNAPSHOT</version>
33     <relativePath>../cps-parent/pom.xml</relativePath>
34   </parent>
35
36   <artifactId>cps-service</artifactId>
37
38   <dependencies>
39     <dependency>
40       <groupId>com.github.ben-manes.caffeine</groupId>
41       <artifactId>caffeine</artifactId>
42     </dependency>
43     <dependency>
44       <!-- For parsing JSON object -->
45       <groupId>com.google.code.gson</groupId>
46       <artifactId>gson</artifactId>
47     </dependency>
48     <dependency>
49       <!-- Hazelcast provide Distributed Caches -->
50       <groupId>com.hazelcast</groupId>
51       <artifactId>hazelcast-spring</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>io.micrometer</groupId>
55       <artifactId>micrometer-core</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>net.logstash.logback</groupId>
59       <artifactId>logstash-logback-encoder</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.codehaus.janino</groupId>
63       <artifactId>janino</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.onap.cps</groupId>
67       <artifactId>cps-events</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.onap.cps</groupId>
71       <artifactId>cps-path-parser</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.yangtools</groupId>
75       <artifactId>yang-model-api</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.yangtools</groupId>
79       <artifactId>yang-parser-api</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.yangtools</groupId>
83       <artifactId>yang-parser-impl</artifactId>
84     </dependency>
85     <dependency>
86       <!-- required for processing yang data in json format -->
87       <groupId>org.opendaylight.yangtools</groupId>
88       <artifactId>yang-data-codec-gson</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.yangtools</groupId>
92       <artifactId>yang-data-codec-xml</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.yangtools</groupId>
96       <artifactId>yang-model-util</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.projectlombok</groupId>
100       <artifactId>lombok</artifactId>
101     </dependency>
102     <dependency>
103       <!-- For logging -->
104       <groupId>org.slf4j</groupId>
105       <artifactId>slf4j-api</artifactId>
106     </dependency>
107     <dependency>
108       <groupId>org.springframework</groupId>
109       <artifactId>spring-messaging</artifactId>
110     </dependency>
111     <dependency>
112       <groupId>org.springframework.boot</groupId>
113       <artifactId>spring-boot-starter-cache</artifactId>
114     </dependency>
115     <dependency>
116       <groupId>org.springframework.boot</groupId>
117       <artifactId>spring-boot-starter-aop</artifactId>
118     </dependency>
119     <dependency>
120       <groupId>org.springframework.boot</groupId>
121       <artifactId>spring-boot-starter-validation</artifactId>
122     </dependency>
123     <dependency>
124       <groupId>org.springframework.kafka</groupId>
125       <artifactId>spring-kafka</artifactId>
126     </dependency>
127     <!-- T E S T   D E P E N D E N C I E S -->
128     <dependency>
129       <groupId>org.codehaus.groovy</groupId>
130       <artifactId>groovy</artifactId>
131       <scope>test</scope>
132     </dependency>
133     <dependency>
134       <groupId>org.codehaus.groovy</groupId>
135       <artifactId>groovy-json</artifactId>
136       <scope>test</scope>
137     </dependency>
138     <dependency>
139       <groupId>org.spockframework</groupId>
140       <artifactId>spock-core</artifactId>
141       <scope>test</scope>
142     </dependency>
143     <dependency>
144       <groupId>org.spockframework</groupId>
145       <artifactId>spock-spring</artifactId>
146       <scope>test</scope>
147     </dependency>
148     <dependency>
149       <groupId>org.springframework.boot</groupId>
150       <artifactId>spring-boot-starter-test</artifactId>
151       <scope>test</scope>
152     </dependency>
153     <dependency>
154       <groupId>cglib</groupId>
155       <artifactId>cglib-nodep</artifactId>
156       <scope>test</scope>
157     </dependency>
158     <dependency>
159       <groupId>org.testcontainers</groupId>
160       <artifactId>kafka</artifactId>
161       <scope>test</scope>
162     </dependency>
163     <dependency>
164       <groupId>org.springframework.kafka</groupId>
165       <artifactId>spring-kafka-test</artifactId>
166       <scope>test</scope>
167     </dependency>
168     <dependency>
169       <groupId>org.aspectj</groupId>
170       <artifactId>aspectjrt</artifactId>
171       <scope>test</scope>
172     </dependency>
173   </dependencies>
174 </project>