blob: 878c4434d350390895137f64dd20fded0d4f0266 [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
5 ================================================================================
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17 ============LICENSE_END=========================================================
18-->
19
niamhcore68205382020-09-23 11:36:33 +010020<project xmlns="http://maven.apache.org/POM/4.0.0"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 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 +010023 <modelVersion>4.0.0</modelVersion>
24 <parent>
25 <groupId>org.onap.cps</groupId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010026 <artifactId>cps-parent</artifactId>
Rishi.Chaildbffd912021-03-05 12:32:33 +000027 <version>1.1.0-SNAPSHOT</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010028 <relativePath>../cps-parent/pom.xml</relativePath>
Rishi Chailb220d742020-09-16 15:23:53 +010029 </parent>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010030
Rishi Chailb220d742020-09-16 15:23:53 +010031 <artifactId>cps-service</artifactId>
32
Rishi Chailb220d742020-09-16 15:23:53 +010033 <dependencies>
niamhcore68205382020-09-23 11:36:33 +010034 <dependency>
35 <groupId>org.opendaylight.yangtools</groupId>
Claudio David Gasparini0e9a8a52020-12-14 09:49:13 +010036 <artifactId>yang-model-api</artifactId>
37 </dependency>
38 <dependency>
39 <groupId>org.opendaylight.yangtools</groupId>
niamhcore68205382020-09-23 11:36:33 +010040 <artifactId>yang-parser-api</artifactId>
niamhcore68205382020-09-23 11:36:33 +010041 </dependency>
niamhcore68205382020-09-23 11:36:33 +010042 <dependency>
43 <groupId>org.opendaylight.yangtools</groupId>
44 <artifactId>yang-parser-impl</artifactId>
niamhcore68205382020-09-23 11:36:33 +010045 </dependency>
niamhcore68205382020-09-23 11:36:33 +010046 <dependency>
47 <groupId>org.opendaylight.yangtools</groupId>
48 <artifactId>yang-model-util</artifactId>
niamhcore68205382020-09-23 11:36:33 +010049 </dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010050 <!-- required for processing yang data in json format -->
niamhcore68205382020-09-23 11:36:33 +010051 <dependency>
52 <groupId>org.opendaylight.yangtools</groupId>
ToineSiebelinkdce36952020-09-30 16:11:55 +010053 <artifactId>yang-data-codec-gson</artifactId>
niamhcore68205382020-09-23 11:36:33 +010054 </dependency>
niamhcore68205382020-09-23 11:36:33 +010055 <dependency>
56 <groupId>org.projectlombok</groupId>
57 <artifactId>lombok</artifactId>
58 </dependency>
niamhcore68205382020-09-23 11:36:33 +010059 <dependency>
Claudio David Gasparini1b8a4dd2021-01-13 19:12:25 +010060 <groupId>org.springframework.boot</groupId>
61 <artifactId>spring-boot-starter-cache</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>com.github.ben-manes.caffeine</groupId>
65 <artifactId>caffeine</artifactId>
66 </dependency>
67 <dependency>
niamhcore68205382020-09-23 11:36:33 +010068 <!-- For logging -->
69 <groupId>org.slf4j</groupId>
70 <artifactId>slf4j-api</artifactId>
71 </dependency>
niamhcore68205382020-09-23 11:36:33 +010072 <dependency>
73 <!-- For dependency injection -->
74 <groupId>org.springframework</groupId>
75 <artifactId>spring-context</artifactId>
76 </dependency>
niamhcore6612c792020-09-25 14:53:25 +010077 <dependency>
78 <!-- For parsing JSON object -->
79 <groupId>com.google.code.gson</groupId>
80 <artifactId>gson</artifactId>
81 </dependency>
ToineSiebelinkdce36952020-09-30 16:11:55 +010082 <!-- T E S T D E P E N D E N C I E S -->
ToineSiebelinkdce36952020-09-30 16:11:55 +010083 <dependency>
84 <groupId>org.codehaus.groovy</groupId>
85 <artifactId>groovy</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010086 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +010087 </dependency>
88 <dependency>
89 <groupId>org.spockframework</groupId>
90 <artifactId>spock-core</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010091 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +010092 </dependency>
93 <dependency>
Claudio David Gasparini1b8a4dd2021-01-13 19:12:25 +010094 <groupId>org.spockframework</groupId>
95 <artifactId>spock-spring</artifactId>
96 <scope>test</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.springframework.boot</groupId>
100 <artifactId>spring-boot-starter-test</artifactId>
101 <scope>test</scope>
102 </dependency>
103 <dependency>
ToineSiebelinkdce36952020-09-30 16:11:55 +0100104 <groupId>cglib</groupId>
105 <artifactId>cglib-nodep</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +0100106 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +0100107 </dependency>
niamhcore68205382020-09-23 11:36:33 +0100108 </dependencies>
ToineSiebelinkdce36952020-09-30 16:11:55 +0100109</project>