blob: 6cef985f89f98b3b9025390bb1adfbc939f54147 [file] [log] [blame]
shivasubedi8df61a92021-06-16 14:43:18 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
lukegleeson15b93e72021-07-07 15:25:30 +01004 Copyright (C) 2021 Nordix Foundation
Renu Kumariff52b942021-05-27 23:16:32 -04005 Modifications Copyright (C) 2021 Bell Canada.
lukegleeson15b93e72021-07-07 15:25:30 +01006 Modifications Copyright (C) 2021 Pantheon.tech
shivasubedi8df61a92021-06-16 14:43:18 +01007 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12 http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
lukegleeson15b93e72021-07-07 15:25:30 +010019
20 SPDX-License-Identifier: Apache-2.0
shivasubedi8df61a92021-06-16 14:43:18 +010021 ============LICENSE_END=========================================================
22-->
23
niamhcore68205382020-09-23 11:36:33 +010024<project xmlns="http://maven.apache.org/POM/4.0.0"
25 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26 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 +010027 <modelVersion>4.0.0</modelVersion>
28 <parent>
29 <groupId>org.onap.cps</groupId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010030 <artifactId>cps-parent</artifactId>
puthuparambil.adityaccba6b52021-10-14 13:36:41 +010031 <version>2.1.0-SNAPSHOT</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010032 <relativePath>../cps-parent/pom.xml</relativePath>
Rishi Chailb220d742020-09-16 15:23:53 +010033 </parent>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010034
Rishi Chailb220d742020-09-16 15:23:53 +010035 <artifactId>cps-service</artifactId>
36
ToineSiebelink73001f62021-09-17 15:07:38 +010037 <properties>
38 <minimum-coverage>0.94</minimum-coverage>
39 </properties>
40
Rishi Chailb220d742020-09-16 15:23:53 +010041 <dependencies>
niamhcore68205382020-09-23 11:36:33 +010042 <dependency>
Renu Kumariff52b942021-05-27 23:16:32 -040043 <groupId>org.onap.cps</groupId>
44 <artifactId>cps-events</artifactId>
45 </dependency>
46 <dependency>
niamhcore68205382020-09-23 11:36:33 +010047 <groupId>org.opendaylight.yangtools</groupId>
Claudio David Gasparini0e9a8a52020-12-14 09:49:13 +010048 <artifactId>yang-model-api</artifactId>
49 </dependency>
50 <dependency>
51 <groupId>org.opendaylight.yangtools</groupId>
niamhcore68205382020-09-23 11:36:33 +010052 <artifactId>yang-parser-api</artifactId>
niamhcore68205382020-09-23 11:36:33 +010053 </dependency>
niamhcore68205382020-09-23 11:36:33 +010054 <dependency>
55 <groupId>org.opendaylight.yangtools</groupId>
56 <artifactId>yang-parser-impl</artifactId>
niamhcore68205382020-09-23 11:36:33 +010057 </dependency>
niamhcore68205382020-09-23 11:36:33 +010058 <dependency>
59 <groupId>org.opendaylight.yangtools</groupId>
60 <artifactId>yang-model-util</artifactId>
niamhcore68205382020-09-23 11:36:33 +010061 </dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010062 <!-- required for processing yang data in json format -->
niamhcore68205382020-09-23 11:36:33 +010063 <dependency>
64 <groupId>org.opendaylight.yangtools</groupId>
ToineSiebelinkdce36952020-09-30 16:11:55 +010065 <artifactId>yang-data-codec-gson</artifactId>
niamhcore68205382020-09-23 11:36:33 +010066 </dependency>
niamhcore68205382020-09-23 11:36:33 +010067 <dependency>
68 <groupId>org.projectlombok</groupId>
69 <artifactId>lombok</artifactId>
70 </dependency>
niamhcore68205382020-09-23 11:36:33 +010071 <dependency>
Claudio David Gasparini1b8a4dd2021-01-13 19:12:25 +010072 <groupId>org.springframework.boot</groupId>
73 <artifactId>spring-boot-starter-cache</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>com.github.ben-manes.caffeine</groupId>
77 <artifactId>caffeine</artifactId>
78 </dependency>
79 <dependency>
Renu Kumariff52b942021-05-27 23:16:32 -040080 <groupId>org.springframework.kafka</groupId>
81 <artifactId>spring-kafka</artifactId>
82 </dependency>
83 <dependency>
84 <groupId>org.springframework</groupId>
85 <artifactId>spring-messaging</artifactId>
86 </dependency>
87 <dependency>
niamhcore68205382020-09-23 11:36:33 +010088 <!-- For logging -->
89 <groupId>org.slf4j</groupId>
90 <artifactId>slf4j-api</artifactId>
91 </dependency>
niamhcore68205382020-09-23 11:36:33 +010092 <dependency>
93 <!-- For dependency injection -->
94 <groupId>org.springframework</groupId>
95 <artifactId>spring-context</artifactId>
96 </dependency>
niamhcore6612c792020-09-25 14:53:25 +010097 <dependency>
Renu Kumari8f01bf62021-08-17 14:06:53 -040098 <groupId>org.springframework.boot</groupId>
99 <artifactId>spring-boot-starter-validation</artifactId>
100 </dependency>
101 <dependency>
niamhcore6612c792020-09-25 14:53:25 +0100102 <!-- For parsing JSON object -->
103 <groupId>com.google.code.gson</groupId>
104 <artifactId>gson</artifactId>
105 </dependency>
ToineSiebelinkdce36952020-09-30 16:11:55 +0100106 <!-- T E S T D E P E N D E N C I E S -->
ToineSiebelinkdce36952020-09-30 16:11:55 +0100107 <dependency>
108 <groupId>org.codehaus.groovy</groupId>
109 <artifactId>groovy</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100110 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +0100111 </dependency>
112 <dependency>
113 <groupId>org.spockframework</groupId>
114 <artifactId>spock-core</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100115 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +0100116 </dependency>
117 <dependency>
Claudio David Gasparini1b8a4dd2021-01-13 19:12:25 +0100118 <groupId>org.spockframework</groupId>
119 <artifactId>spock-spring</artifactId>
120 <scope>test</scope>
121 </dependency>
122 <dependency>
123 <groupId>org.springframework.boot</groupId>
124 <artifactId>spring-boot-starter-test</artifactId>
125 <scope>test</scope>
126 </dependency>
127 <dependency>
ToineSiebelinkdce36952020-09-30 16:11:55 +0100128 <groupId>cglib</groupId>
129 <artifactId>cglib-nodep</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100130 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +0100131 </dependency>
Renu Kumariff52b942021-05-27 23:16:32 -0400132 <dependency>
133 <groupId>org.testcontainers</groupId>
134 <artifactId>kafka</artifactId>
135 <scope>test</scope>
136 </dependency>
137 <dependency>
138 <groupId>org.springframework.kafka</groupId>
139 <artifactId>spring-kafka-test</artifactId>
140 <scope>test</scope>
141 </dependency>
niamhcore68205382020-09-23 11:36:33 +0100142 </dependencies>
ToineSiebelinkdce36952020-09-30 16:11:55 +0100143</project>