blob: e5e1cad4f1376af3e9aa908a9e601d8e3a1511ae [file] [log] [blame]
niamhcore68205382020-09-23 11:36:33 +01001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 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 +01004 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.onap.cps</groupId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +01007 <artifactId>cps-parent</artifactId>
Rishi.Chaildbffd912021-03-05 12:32:33 +00008 <version>1.1.0-SNAPSHOT</version>
Claudio David Gasparini70c17022020-10-26 10:12:10 +01009 <relativePath>../cps-parent/pom.xml</relativePath>
Rishi Chailb220d742020-09-16 15:23:53 +010010 </parent>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010011
Rishi Chailb220d742020-09-16 15:23:53 +010012 <artifactId>cps-service</artifactId>
13
Rishi Chailb220d742020-09-16 15:23:53 +010014 <dependencies>
niamhcore68205382020-09-23 11:36:33 +010015 <dependency>
16 <groupId>org.opendaylight.yangtools</groupId>
Claudio David Gasparini0e9a8a52020-12-14 09:49:13 +010017 <artifactId>yang-model-api</artifactId>
18 </dependency>
19 <dependency>
20 <groupId>org.opendaylight.yangtools</groupId>
niamhcore68205382020-09-23 11:36:33 +010021 <artifactId>yang-parser-api</artifactId>
niamhcore68205382020-09-23 11:36:33 +010022 </dependency>
niamhcore68205382020-09-23 11:36:33 +010023 <dependency>
24 <groupId>org.opendaylight.yangtools</groupId>
25 <artifactId>yang-parser-impl</artifactId>
niamhcore68205382020-09-23 11:36:33 +010026 </dependency>
niamhcore68205382020-09-23 11:36:33 +010027 <dependency>
28 <groupId>org.opendaylight.yangtools</groupId>
29 <artifactId>yang-model-util</artifactId>
niamhcore68205382020-09-23 11:36:33 +010030 </dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010031 <!-- required for processing yang data in json format -->
niamhcore68205382020-09-23 11:36:33 +010032 <dependency>
33 <groupId>org.opendaylight.yangtools</groupId>
ToineSiebelinkdce36952020-09-30 16:11:55 +010034 <artifactId>yang-data-codec-gson</artifactId>
niamhcore68205382020-09-23 11:36:33 +010035 </dependency>
niamhcore68205382020-09-23 11:36:33 +010036 <dependency>
37 <groupId>org.projectlombok</groupId>
38 <artifactId>lombok</artifactId>
39 </dependency>
niamhcore68205382020-09-23 11:36:33 +010040 <dependency>
Claudio David Gasparini1b8a4dd2021-01-13 19:12:25 +010041 <groupId>org.springframework.boot</groupId>
42 <artifactId>spring-boot-starter-cache</artifactId>
43 </dependency>
44 <dependency>
45 <groupId>com.github.ben-manes.caffeine</groupId>
46 <artifactId>caffeine</artifactId>
47 </dependency>
48 <dependency>
niamhcore68205382020-09-23 11:36:33 +010049 <!-- For logging -->
50 <groupId>org.slf4j</groupId>
51 <artifactId>slf4j-api</artifactId>
52 </dependency>
niamhcore68205382020-09-23 11:36:33 +010053 <dependency>
54 <!-- For dependency injection -->
55 <groupId>org.springframework</groupId>
56 <artifactId>spring-context</artifactId>
57 </dependency>
niamhcore6612c792020-09-25 14:53:25 +010058 <dependency>
59 <!-- For parsing JSON object -->
60 <groupId>com.google.code.gson</groupId>
61 <artifactId>gson</artifactId>
62 </dependency>
ToineSiebelinkdce36952020-09-30 16:11:55 +010063 <!-- T E S T D E P E N D E N C I E S -->
ToineSiebelinkdce36952020-09-30 16:11:55 +010064 <dependency>
65 <groupId>org.codehaus.groovy</groupId>
66 <artifactId>groovy</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010067 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +010068 </dependency>
69 <dependency>
70 <groupId>org.spockframework</groupId>
71 <artifactId>spock-core</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010072 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +010073 </dependency>
74 <dependency>
Claudio David Gasparini1b8a4dd2021-01-13 19:12:25 +010075 <groupId>org.spockframework</groupId>
76 <artifactId>spock-spring</artifactId>
77 <scope>test</scope>
78 </dependency>
79 <dependency>
80 <groupId>org.springframework.boot</groupId>
81 <artifactId>spring-boot-starter-test</artifactId>
82 <scope>test</scope>
83 </dependency>
84 <dependency>
ToineSiebelinkdce36952020-09-30 16:11:55 +010085 <groupId>cglib</groupId>
86 <artifactId>cglib-nodep</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010087 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +010088 </dependency>
niamhcore68205382020-09-23 11:36:33 +010089 </dependencies>
ToineSiebelinkdce36952020-09-30 16:11:55 +010090</project>