blob: 642d76451d8d7b8a8780a7f9365b9b8539720699 [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 Chailb220d742020-09-16 15:23:53 +01008 <version>0.0.1-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>
41 <!-- For logging -->
42 <groupId>org.slf4j</groupId>
43 <artifactId>slf4j-api</artifactId>
44 </dependency>
niamhcore68205382020-09-23 11:36:33 +010045 <dependency>
46 <!-- For dependency injection -->
47 <groupId>org.springframework</groupId>
48 <artifactId>spring-context</artifactId>
49 </dependency>
niamhcore6612c792020-09-25 14:53:25 +010050 <dependency>
51 <!-- For parsing JSON object -->
52 <groupId>com.google.code.gson</groupId>
53 <artifactId>gson</artifactId>
54 </dependency>
ToineSiebelinkdce36952020-09-30 16:11:55 +010055 <!-- T E S T D E P E N D E N C I E S -->
ToineSiebelinkdce36952020-09-30 16:11:55 +010056 <dependency>
57 <groupId>org.codehaus.groovy</groupId>
58 <artifactId>groovy</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010059 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +010060 </dependency>
61 <dependency>
62 <groupId>org.spockframework</groupId>
63 <artifactId>spock-core</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010064 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +010065 </dependency>
66 <dependency>
67 <groupId>cglib</groupId>
68 <artifactId>cglib-nodep</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010069 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +010070 </dependency>
niamhcore68205382020-09-23 11:36:33 +010071 </dependencies>
ToineSiebelinkdce36952020-09-30 16:11:55 +010072</project>