blob: 7dda1327e087893b974f3b40dcc1e017bc82a584 [file] [log] [blame]
JosephKeenanf31c7f82022-05-24 18:59:25 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
emacleeea7d1b42024-03-24 19:05:34 +00004 Copyright (C) 2021-2024 Nordix Foundation
JosephKeenanf31c7f82022-05-24 18:59:25 +01005 Modifications Copyright (C) 2021 Bell Canada.
6 Modifications Copyright (C) 2021 Pantheon.tech
Michal Jagiello6ce84d92022-12-13 07:40:19 +00007 Modifications Copyright (C) 2022 Deutsche Telekom AG
Rudrangi Anupriya14d6a9b2024-11-02 00:16:58 +05308 Modifications Copyright (C) 2024 TechMahindra Ltd.
JosephKeenanf31c7f82022-05-24 18:59:25 +01009 ================================================================================
10 Licensed under the Apache License, Version 2.0 (the "License");
11 you may not use this file except in compliance with the License.
12 You may obtain a copy of the License at
13
14 http://www.apache.org/licenses/LICENSE-2.0
15
16 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
21
22 SPDX-License-Identifier: Apache-2.0
23 ============LICENSE_END=========================================================
24-->
25
26<project xmlns="http://maven.apache.org/POM/4.0.0"
27 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
28 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
29 <modelVersion>4.0.0</modelVersion>
30 <parent>
31 <groupId>org.onap.cps</groupId>
32 <artifactId>cps-parent</artifactId>
mpriyank08bcac32024-12-02 14:26:03 +000033 <version>3.6.0-SNAPSHOT</version>
JosephKeenanf31c7f82022-05-24 18:59:25 +010034 <relativePath>../cps-parent/pom.xml</relativePath>
35 </parent>
36
37 <artifactId>cps-service</artifactId>
38
JosephKeenanf31c7f82022-05-24 18:59:25 +010039 <dependencies>
40 <dependency>
rajesh.kumareb3a8082024-02-23 20:29:59 +053041 <groupId>org.apache.commons</groupId>
42 <artifactId>commons-lang3</artifactId>
43 </dependency>
44 <dependency>
egernug42daf632023-10-03 12:56:29 +010045 <groupId>org.springframework</groupId>
46 <artifactId>spring-messaging</artifactId>
47 </dependency>
48 <dependency>
49 <groupId>org.springframework.boot</groupId>
50 <artifactId>spring-boot-starter-cache</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>org.springframework.boot</groupId>
54 <artifactId>spring-boot-starter-aop</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>org.springframework.boot</groupId>
58 <artifactId>spring-boot-starter-validation</artifactId>
59 </dependency>
60 <dependency>
61 <groupId>org.springframework.kafka</groupId>
62 <artifactId>spring-kafka</artifactId>
63 </dependency>
64 <dependency>
ToineSiebelink0fa2fab2023-01-19 16:45:58 +000065 <groupId>com.github.ben-manes.caffeine</groupId>
66 <artifactId>caffeine</artifactId>
67 </dependency>
ToineSiebelink77e469b2024-10-01 18:40:39 +010068 <!-- Disable SpotBug Rules -->
69 <dependency>
70 <groupId>com.github.spotbugs</groupId>
71 <artifactId>spotbugs-annotations</artifactId>
72 </dependency>
ToineSiebelink0fa2fab2023-01-19 16:45:58 +000073 <dependency>
74 <!-- For parsing JSON object -->
75 <groupId>com.google.code.gson</groupId>
76 <artifactId>gson</artifactId>
77 </dependency>
78 <dependency>
ToineSiebelink0fa2fab2023-01-19 16:45:58 +000079 <groupId>io.micrometer</groupId>
80 <artifactId>micrometer-core</artifactId>
81 </dependency>
82 <dependency>
rajesh.kumareb3a8082024-02-23 20:29:59 +053083 <groupId>io.cloudevents</groupId>
84 <artifactId>cloudevents-json-jackson</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>io.cloudevents</groupId>
88 <artifactId>cloudevents-kafka</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>io.cloudevents</groupId>
92 <artifactId>cloudevents-spring</artifactId>
93 </dependency>
94 <dependency>
egernug42daf632023-10-03 12:56:29 +010095 <groupId>jakarta.validation</groupId>
96 <artifactId>jakarta.validation-api</artifactId>
97 </dependency>
98 <dependency>
ToineSiebelink0fa2fab2023-01-19 16:45:58 +000099 <groupId>net.logstash.logback</groupId>
100 <artifactId>logstash-logback-encoder</artifactId>
101 </dependency>
102 <dependency>
103 <groupId>org.codehaus.janino</groupId>
104 <artifactId>janino</artifactId>
105 </dependency>
106 <dependency>
JosephKeenanf31c7f82022-05-24 18:59:25 +0100107 <groupId>org.onap.cps</groupId>
108 <artifactId>cps-events</artifactId>
109 </dependency>
110 <dependency>
ToineSiebelink0fa2fab2023-01-19 16:45:58 +0000111 <groupId>org.onap.cps</groupId>
112 <artifactId>cps-path-parser</artifactId>
113 </dependency>
114 <dependency>
JosephKeenanf31c7f82022-05-24 18:59:25 +0100115 <groupId>org.opendaylight.yangtools</groupId>
116 <artifactId>yang-model-api</artifactId>
117 </dependency>
118 <dependency>
119 <groupId>org.opendaylight.yangtools</groupId>
120 <artifactId>yang-parser-api</artifactId>
121 </dependency>
122 <dependency>
123 <groupId>org.opendaylight.yangtools</groupId>
124 <artifactId>yang-parser-impl</artifactId>
125 </dependency>
126 <dependency>
ToineSiebelink0fa2fab2023-01-19 16:45:58 +0000127 <!-- required for processing yang data in json format -->
JosephKeenanf31c7f82022-05-24 18:59:25 +0100128 <groupId>org.opendaylight.yangtools</groupId>
129 <artifactId>yang-data-codec-gson</artifactId>
130 </dependency>
131 <dependency>
Michal Jagiello6ce84d92022-12-13 07:40:19 +0000132 <groupId>org.opendaylight.yangtools</groupId>
133 <artifactId>yang-data-codec-xml</artifactId>
134 </dependency>
135 <dependency>
ToineSiebelink0fa2fab2023-01-19 16:45:58 +0000136 <groupId>org.opendaylight.yangtools</groupId>
137 <artifactId>yang-model-util</artifactId>
138 </dependency>
139 <dependency>
JosephKeenanf31c7f82022-05-24 18:59:25 +0100140 <groupId>org.projectlombok</groupId>
141 <artifactId>lombok</artifactId>
142 </dependency>
143 <dependency>
JosephKeenanf31c7f82022-05-24 18:59:25 +0100144 <!-- For logging -->
145 <groupId>org.slf4j</groupId>
146 <artifactId>slf4j-api</artifactId>
147 </dependency>
ToineSiebelink77e469b2024-10-01 18:40:39 +0100148
egernug42daf632023-10-03 12:56:29 +0100149 <!-- T E S T D E P E N D E N C I E S -->
egernug477bd462023-09-21 17:51:21 +0100150 <dependency>
JosephKeenanf31c7f82022-05-24 18:59:25 +0100151 <groupId>org.codehaus.groovy</groupId>
152 <artifactId>groovy</artifactId>
153 <scope>test</scope>
154 </dependency>
155 <dependency>
156 <groupId>org.codehaus.groovy</groupId>
157 <artifactId>groovy-json</artifactId>
158 <scope>test</scope>
159 </dependency>
160 <dependency>
161 <groupId>org.spockframework</groupId>
162 <artifactId>spock-core</artifactId>
163 <scope>test</scope>
164 </dependency>
165 <dependency>
166 <groupId>org.spockframework</groupId>
167 <artifactId>spock-spring</artifactId>
168 <scope>test</scope>
169 </dependency>
170 <dependency>
171 <groupId>org.springframework.boot</groupId>
172 <artifactId>spring-boot-starter-test</artifactId>
173 <scope>test</scope>
174 </dependency>
175 <dependency>
176 <groupId>cglib</groupId>
177 <artifactId>cglib-nodep</artifactId>
178 <scope>test</scope>
179 </dependency>
180 <dependency>
181 <groupId>org.testcontainers</groupId>
182 <artifactId>kafka</artifactId>
183 <scope>test</scope>
emacleeea7d1b42024-03-24 19:05:34 +0000184 <exclusions>
185 <exclusion>
186 <groupId>junit</groupId>
187 <artifactId>junit</artifactId>
188 </exclusion>
189 </exclusions>
JosephKeenanf31c7f82022-05-24 18:59:25 +0100190 </dependency>
191 <dependency>
192 <groupId>org.springframework.kafka</groupId>
193 <artifactId>spring-kafka-test</artifactId>
194 <scope>test</scope>
195 </dependency>
Rudrangi Anupriya14d6a9b2024-11-02 00:16:58 +0530196 <dependency>
197 <groupId>org.springframework</groupId>
198 <artifactId>spring-web</artifactId>
199 </dependency>
JosephKeenanf31c7f82022-05-24 18:59:25 +0100200 </dependencies>
201</project>