niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 1 | <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 Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 4 | <modelVersion>4.0.0</modelVersion>
|
| 5 | <parent>
|
| 6 | <groupId>org.onap.cps</groupId>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 7 | <artifactId>cps-parent</artifactId>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 8 | <version>0.0.1-SNAPSHOT</version>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 9 | <relativePath>../cps-parent/pom.xml</relativePath>
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 10 | </parent>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 11 |
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 12 | <artifactId>cps-service</artifactId>
|
| 13 |
|
Rishi Chail | b220d74 | 2020-09-16 15:23:53 +0100 | [diff] [blame] | 14 | <dependencies>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 15 | <dependency>
|
| 16 | <groupId>org.opendaylight.yangtools</groupId>
|
| 17 | <artifactId>yang-parser-api</artifactId>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 18 | </dependency>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 19 | <dependency>
|
| 20 | <groupId>org.opendaylight.yangtools</groupId>
|
| 21 | <artifactId>yang-parser-impl</artifactId>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 22 | </dependency>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 23 | <dependency>
|
| 24 | <groupId>org.opendaylight.yangtools</groupId>
|
| 25 | <artifactId>yang-model-util</artifactId>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 26 | </dependency>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 27 | <!-- required for processing yang data in json format -->
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 28 | <dependency>
|
| 29 | <groupId>org.opendaylight.yangtools</groupId>
|
ToineSiebelink | dce3695 | 2020-09-30 16:11:55 +0100 | [diff] [blame] | 30 | <artifactId>yang-data-codec-gson</artifactId>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 31 | </dependency>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 32 | <dependency>
|
| 33 | <groupId>org.projectlombok</groupId>
|
| 34 | <artifactId>lombok</artifactId>
|
| 35 | </dependency>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 36 | <dependency>
|
| 37 | <!-- For logging -->
|
| 38 | <groupId>org.slf4j</groupId>
|
| 39 | <artifactId>slf4j-api</artifactId>
|
| 40 | </dependency>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 41 | <dependency>
|
| 42 | <!-- For dependency injection -->
|
| 43 | <groupId>org.springframework</groupId>
|
| 44 | <artifactId>spring-context</artifactId>
|
| 45 | </dependency>
|
niamhcore | 6612c79 | 2020-09-25 14:53:25 +0100 | [diff] [blame] | 46 | <dependency>
|
| 47 | <!-- For parsing JSON object -->
|
| 48 | <groupId>com.google.code.gson</groupId>
|
| 49 | <artifactId>gson</artifactId>
|
| 50 | </dependency>
|
ToineSiebelink | dce3695 | 2020-09-30 16:11:55 +0100 | [diff] [blame] | 51 | <!-- T E S T D E P E N D E N C I E S -->
|
ToineSiebelink | dce3695 | 2020-09-30 16:11:55 +0100 | [diff] [blame] | 52 | <dependency>
|
| 53 | <groupId>org.codehaus.groovy</groupId>
|
| 54 | <artifactId>groovy</artifactId>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 55 | <scope>test</scope>
|
ToineSiebelink | dce3695 | 2020-09-30 16:11:55 +0100 | [diff] [blame] | 56 | </dependency>
|
| 57 | <dependency>
|
| 58 | <groupId>org.spockframework</groupId>
|
| 59 | <artifactId>spock-core</artifactId>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 60 | <scope>test</scope>
|
ToineSiebelink | dce3695 | 2020-09-30 16:11:55 +0100 | [diff] [blame] | 61 | </dependency>
|
| 62 | <dependency>
|
| 63 | <groupId>cglib</groupId>
|
| 64 | <artifactId>cglib-nodep</artifactId>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 65 | <scope>test</scope>
|
ToineSiebelink | dce3695 | 2020-09-30 16:11:55 +0100 | [diff] [blame] | 66 | </dependency>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 67 | </dependencies>
|
ToineSiebelink | dce3695 | 2020-09-30 16:11:55 +0100 | [diff] [blame] | 68 | </project>
|