blob: dcfb1a70f184d311569d918a451948e3e6567c12 [file] [log] [blame]
shivasubedi8df61a92021-06-16 14:43:18 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
4 Copyright Copyright (C) 2021 Nordix Foundation
Renu Kumariff52b942021-05-27 23:16:32 -04005 Modifications Copyright (C) 2021 Bell Canada.
shivasubedi8df61a92021-06-16 14:43:18 +01006 ================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ============LICENSE_END=========================================================
19-->
20
niamhcore68205382020-09-23 11:36:33 +010021<project xmlns="http://maven.apache.org/POM/4.0.0"
22 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
Rishi Chailb220d742020-09-16 15:23:53 +010024 <modelVersion>4.0.0</modelVersion>
25 <parent>
26 <groupId>org.onap.cps</groupId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010027 <artifactId>cps-parent</artifactId>
Rishi.Chaildbffd912021-03-05 12:32:33 +000028 <version>1.1.0-SNAPSHOT</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010029 <relativePath>../cps-parent/pom.xml</relativePath>
Rishi Chailb220d742020-09-16 15:23:53 +010030 </parent>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010031
Rishi Chailb220d742020-09-16 15:23:53 +010032 <artifactId>cps-service</artifactId>
33
Rishi Chailb220d742020-09-16 15:23:53 +010034 <dependencies>
niamhcore68205382020-09-23 11:36:33 +010035 <dependency>
Renu Kumariff52b942021-05-27 23:16:32 -040036 <groupId>org.onap.cps</groupId>
37 <artifactId>cps-events</artifactId>
38 </dependency>
39 <dependency>
niamhcore68205382020-09-23 11:36:33 +010040 <groupId>org.opendaylight.yangtools</groupId>
Claudio David Gasparini0e9a8a52020-12-14 09:49:13 +010041 <artifactId>yang-model-api</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>org.opendaylight.yangtools</groupId>
niamhcore68205382020-09-23 11:36:33 +010045 <artifactId>yang-parser-api</artifactId>
niamhcore68205382020-09-23 11:36:33 +010046 </dependency>
niamhcore68205382020-09-23 11:36:33 +010047 <dependency>
48 <groupId>org.opendaylight.yangtools</groupId>
49 <artifactId>yang-parser-impl</artifactId>
niamhcore68205382020-09-23 11:36:33 +010050 </dependency>
niamhcore68205382020-09-23 11:36:33 +010051 <dependency>
52 <groupId>org.opendaylight.yangtools</groupId>
53 <artifactId>yang-model-util</artifactId>
niamhcore68205382020-09-23 11:36:33 +010054 </dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010055 <!-- required for processing yang data in json format -->
niamhcore68205382020-09-23 11:36:33 +010056 <dependency>
57 <groupId>org.opendaylight.yangtools</groupId>
ToineSiebelinkdce36952020-09-30 16:11:55 +010058 <artifactId>yang-data-codec-gson</artifactId>
niamhcore68205382020-09-23 11:36:33 +010059 </dependency>
niamhcore68205382020-09-23 11:36:33 +010060 <dependency>
61 <groupId>org.projectlombok</groupId>
62 <artifactId>lombok</artifactId>
63 </dependency>
niamhcore68205382020-09-23 11:36:33 +010064 <dependency>
Claudio David Gasparini1b8a4dd2021-01-13 19:12:25 +010065 <groupId>org.springframework.boot</groupId>
66 <artifactId>spring-boot-starter-cache</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>com.github.ben-manes.caffeine</groupId>
70 <artifactId>caffeine</artifactId>
71 </dependency>
72 <dependency>
Renu Kumariff52b942021-05-27 23:16:32 -040073 <groupId>org.springframework.kafka</groupId>
74 <artifactId>spring-kafka</artifactId>
75 </dependency>
76 <dependency>
77 <groupId>org.springframework</groupId>
78 <artifactId>spring-messaging</artifactId>
79 </dependency>
80 <dependency>
niamhcore68205382020-09-23 11:36:33 +010081 <!-- For logging -->
82 <groupId>org.slf4j</groupId>
83 <artifactId>slf4j-api</artifactId>
84 </dependency>
niamhcore68205382020-09-23 11:36:33 +010085 <dependency>
86 <!-- For dependency injection -->
87 <groupId>org.springframework</groupId>
88 <artifactId>spring-context</artifactId>
89 </dependency>
niamhcore6612c792020-09-25 14:53:25 +010090 <dependency>
91 <!-- For parsing JSON object -->
92 <groupId>com.google.code.gson</groupId>
93 <artifactId>gson</artifactId>
94 </dependency>
ToineSiebelinkdce36952020-09-30 16:11:55 +010095 <!-- T E S T D E P E N D E N C I E S -->
ToineSiebelinkdce36952020-09-30 16:11:55 +010096 <dependency>
97 <groupId>org.codehaus.groovy</groupId>
98 <artifactId>groovy</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010099 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +0100100 </dependency>
101 <dependency>
102 <groupId>org.spockframework</groupId>
103 <artifactId>spock-core</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100104 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +0100105 </dependency>
106 <dependency>
Claudio David Gasparini1b8a4dd2021-01-13 19:12:25 +0100107 <groupId>org.spockframework</groupId>
108 <artifactId>spock-spring</artifactId>
109 <scope>test</scope>
110 </dependency>
111 <dependency>
112 <groupId>org.springframework.boot</groupId>
113 <artifactId>spring-boot-starter-test</artifactId>
114 <scope>test</scope>
115 </dependency>
116 <dependency>
ToineSiebelinkdce36952020-09-30 16:11:55 +0100117 <groupId>cglib</groupId>
118 <artifactId>cglib-nodep</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100119 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +0100120 </dependency>
Renu Kumariff52b942021-05-27 23:16:32 -0400121 <dependency>
122 <groupId>org.testcontainers</groupId>
123 <artifactId>kafka</artifactId>
124 <scope>test</scope>
125 </dependency>
126 <dependency>
127 <groupId>org.springframework.kafka</groupId>
128 <artifactId>spring-kafka-test</artifactId>
129 <scope>test</scope>
130 </dependency>
niamhcore68205382020-09-23 11:36:33 +0100131 </dependencies>
ToineSiebelinkdce36952020-09-30 16:11:55 +0100132</project>