blob: 3e8cc2debd5cff7e63780a77e24e6e156183971a [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>
17 <artifactId>yang-parser-api</artifactId>
niamhcore68205382020-09-23 11:36:33 +010018 </dependency>
niamhcore68205382020-09-23 11:36:33 +010019 <dependency>
20 <groupId>org.opendaylight.yangtools</groupId>
21 <artifactId>yang-parser-impl</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-model-util</artifactId>
niamhcore68205382020-09-23 11:36:33 +010026 </dependency>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010027 <!-- required for processing yang data in json format -->
niamhcore68205382020-09-23 11:36:33 +010028 <dependency>
29 <groupId>org.opendaylight.yangtools</groupId>
ToineSiebelinkdce36952020-09-30 16:11:55 +010030 <artifactId>yang-data-codec-gson</artifactId>
niamhcore68205382020-09-23 11:36:33 +010031 </dependency>
niamhcore68205382020-09-23 11:36:33 +010032 <dependency>
33 <groupId>org.projectlombok</groupId>
34 <artifactId>lombok</artifactId>
35 </dependency>
niamhcore68205382020-09-23 11:36:33 +010036 <dependency>
37 <!-- For logging -->
38 <groupId>org.slf4j</groupId>
39 <artifactId>slf4j-api</artifactId>
40 </dependency>
niamhcore68205382020-09-23 11:36:33 +010041 <dependency>
42 <!-- For dependency injection -->
43 <groupId>org.springframework</groupId>
44 <artifactId>spring-context</artifactId>
45 </dependency>
niamhcore6612c792020-09-25 14:53:25 +010046 <dependency>
47 <!-- For parsing JSON object -->
48 <groupId>com.google.code.gson</groupId>
49 <artifactId>gson</artifactId>
50 </dependency>
ToineSiebelinkdce36952020-09-30 16:11:55 +010051 <!-- T E S T D E P E N D E N C I E S -->
ToineSiebelinkdce36952020-09-30 16:11:55 +010052 <dependency>
53 <groupId>org.codehaus.groovy</groupId>
54 <artifactId>groovy</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010055 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +010056 </dependency>
57 <dependency>
58 <groupId>org.spockframework</groupId>
59 <artifactId>spock-core</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010060 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +010061 </dependency>
62 <dependency>
63 <groupId>cglib</groupId>
64 <artifactId>cglib-nodep</artifactId>
Claudio David Gasparini70c17022020-10-26 10:12:10 +010065 <scope>test</scope>
ToineSiebelinkdce36952020-09-30 16:11:55 +010066 </dependency>
niamhcore68205382020-09-23 11:36:33 +010067 </dependencies>
ToineSiebelinkdce36952020-09-30 16:11:55 +010068</project>