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 | dbffd91 | 2021-03-05 12:32:33 +0000 | [diff] [blame^] | 8 | <version>1.1.0-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>
|
Claudio David Gasparini | 0e9a8a5 | 2020-12-14 09:49:13 +0100 | [diff] [blame] | 17 | <artifactId>yang-model-api</artifactId>
|
| 18 | </dependency>
|
| 19 | <dependency>
|
| 20 | <groupId>org.opendaylight.yangtools</groupId>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 21 | <artifactId>yang-parser-api</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-parser-impl</artifactId>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 26 | </dependency>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 27 | <dependency>
|
| 28 | <groupId>org.opendaylight.yangtools</groupId>
|
| 29 | <artifactId>yang-model-util</artifactId>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 30 | </dependency>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 31 | <!-- required for processing yang data in json format -->
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 32 | <dependency>
|
| 33 | <groupId>org.opendaylight.yangtools</groupId>
|
ToineSiebelink | dce3695 | 2020-09-30 16:11:55 +0100 | [diff] [blame] | 34 | <artifactId>yang-data-codec-gson</artifactId>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 35 | </dependency>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 36 | <dependency>
|
| 37 | <groupId>org.projectlombok</groupId>
|
| 38 | <artifactId>lombok</artifactId>
|
| 39 | </dependency>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 40 | <dependency>
|
Claudio David Gasparini | 1b8a4dd | 2021-01-13 19:12:25 +0100 | [diff] [blame] | 41 | <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>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 49 | <!-- For logging -->
|
| 50 | <groupId>org.slf4j</groupId>
|
| 51 | <artifactId>slf4j-api</artifactId>
|
| 52 | </dependency>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 53 | <dependency>
|
| 54 | <!-- For dependency injection -->
|
| 55 | <groupId>org.springframework</groupId>
|
| 56 | <artifactId>spring-context</artifactId>
|
| 57 | </dependency>
|
niamhcore | 6612c79 | 2020-09-25 14:53:25 +0100 | [diff] [blame] | 58 | <dependency>
|
| 59 | <!-- For parsing JSON object -->
|
| 60 | <groupId>com.google.code.gson</groupId>
|
| 61 | <artifactId>gson</artifactId>
|
| 62 | </dependency>
|
ToineSiebelink | dce3695 | 2020-09-30 16:11:55 +0100 | [diff] [blame] | 63 | <!-- 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] | 64 | <dependency>
|
| 65 | <groupId>org.codehaus.groovy</groupId>
|
| 66 | <artifactId>groovy</artifactId>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 67 | <scope>test</scope>
|
ToineSiebelink | dce3695 | 2020-09-30 16:11:55 +0100 | [diff] [blame] | 68 | </dependency>
|
| 69 | <dependency>
|
| 70 | <groupId>org.spockframework</groupId>
|
| 71 | <artifactId>spock-core</artifactId>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 72 | <scope>test</scope>
|
ToineSiebelink | dce3695 | 2020-09-30 16:11:55 +0100 | [diff] [blame] | 73 | </dependency>
|
| 74 | <dependency>
|
Claudio David Gasparini | 1b8a4dd | 2021-01-13 19:12:25 +0100 | [diff] [blame] | 75 | <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>
|
ToineSiebelink | dce3695 | 2020-09-30 16:11:55 +0100 | [diff] [blame] | 85 | <groupId>cglib</groupId>
|
| 86 | <artifactId>cglib-nodep</artifactId>
|
Claudio David Gasparini | 70c1702 | 2020-10-26 10:12:10 +0100 | [diff] [blame] | 87 | <scope>test</scope>
|
ToineSiebelink | dce3695 | 2020-09-30 16:11:55 +0100 | [diff] [blame] | 88 | </dependency>
|
niamhcore | 6820538 | 2020-09-23 11:36:33 +0100 | [diff] [blame] | 89 | </dependencies>
|
ToineSiebelink | dce3695 | 2020-09-30 16:11:55 +0100 | [diff] [blame] | 90 | </project>
|