JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | Copyright (C) 2021-2022 Nordix Foundation |
| 5 | Modifications Copyright (C) 2021 Bell Canada. |
| 6 | Modifications Copyright (C) 2021 Pantheon.tech |
Michal Jagiello | 6ce84d9 | 2022-12-13 07:40:19 +0000 | [diff] [blame^] | 7 | Modifications Copyright (C) 2022 Deutsche Telekom AG |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 8 | ================================================================================ |
| 9 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 10 | you may not use this file except in compliance with the License. |
| 11 | You may obtain a copy of the License at |
| 12 | |
| 13 | http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | |
| 15 | Unless required by applicable law or agreed to in writing, software |
| 16 | distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | See the License for the specific language governing permissions and |
| 19 | limitations under the License. |
| 20 | |
| 21 | SPDX-License-Identifier: Apache-2.0 |
| 22 | ============LICENSE_END========================================================= |
| 23 | --> |
| 24 | |
| 25 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 26 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 27 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 28 | <modelVersion>4.0.0</modelVersion> |
| 29 | <parent> |
| 30 | <groupId>org.onap.cps</groupId> |
| 31 | <artifactId>cps-parent</artifactId> |
leventecsanyi | 37d7285 | 2022-10-26 10:44:08 +0200 | [diff] [blame] | 32 | <version>3.2.1-SNAPSHOT</version> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 33 | <relativePath>../cps-parent/pom.xml</relativePath> |
| 34 | </parent> |
| 35 | |
| 36 | <artifactId>cps-service</artifactId> |
| 37 | |
| 38 | <properties> |
| 39 | <minimum-coverage>0.94</minimum-coverage> |
| 40 | </properties> |
| 41 | |
| 42 | <dependencies> |
| 43 | <dependency> |
| 44 | <groupId>org.onap.cps</groupId> |
| 45 | <artifactId>cps-events</artifactId> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.opendaylight.yangtools</groupId> |
| 49 | <artifactId>yang-model-api</artifactId> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.opendaylight.yangtools</groupId> |
| 53 | <artifactId>yang-parser-api</artifactId> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.opendaylight.yangtools</groupId> |
| 57 | <artifactId>yang-parser-impl</artifactId> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.opendaylight.yangtools</groupId> |
| 61 | <artifactId>yang-model-util</artifactId> |
| 62 | </dependency> |
| 63 | <!-- required for processing yang data in json format --> |
| 64 | <dependency> |
| 65 | <groupId>org.opendaylight.yangtools</groupId> |
| 66 | <artifactId>yang-data-codec-gson</artifactId> |
| 67 | </dependency> |
| 68 | <dependency> |
Michal Jagiello | 6ce84d9 | 2022-12-13 07:40:19 +0000 | [diff] [blame^] | 69 | <groupId>org.opendaylight.yangtools</groupId> |
| 70 | <artifactId>yang-data-codec-xml</artifactId> |
| 71 | </dependency> |
| 72 | <dependency> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 73 | <groupId>org.projectlombok</groupId> |
| 74 | <artifactId>lombok</artifactId> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.springframework.boot</groupId> |
| 78 | <artifactId>spring-boot-starter-cache</artifactId> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>com.github.ben-manes.caffeine</groupId> |
| 82 | <artifactId>caffeine</artifactId> |
| 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>org.springframework.kafka</groupId> |
| 86 | <artifactId>spring-kafka</artifactId> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.springframework</groupId> |
| 90 | <artifactId>spring-messaging</artifactId> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <!-- For logging --> |
| 94 | <groupId>org.slf4j</groupId> |
| 95 | <artifactId>slf4j-api</artifactId> |
| 96 | </dependency> |
| 97 | <dependency> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 98 | <groupId>org.springframework.boot</groupId> |
| 99 | <artifactId>spring-boot-starter-validation</artifactId> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <!-- For parsing JSON object --> |
| 103 | <groupId>com.google.code.gson</groupId> |
| 104 | <artifactId>gson</artifactId> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>org.springframework.boot</groupId> |
| 108 | <artifactId>spring-boot-starter-aop</artifactId> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>net.logstash.logback</groupId> |
| 112 | <artifactId>logstash-logback-encoder</artifactId> |
| 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>org.codehaus.janino</groupId> |
| 116 | <artifactId>janino</artifactId> |
| 117 | </dependency> |
ToineSiebelink | 14e5bf9 | 2022-10-27 17:29:04 +0100 | [diff] [blame] | 118 | <dependency> |
| 119 | <!-- Hazelcast provide Distributed Caches --> |
| 120 | <groupId>com.hazelcast</groupId> |
| 121 | <artifactId>hazelcast-spring</artifactId> |
| 122 | </dependency> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 123 | <!-- T E S T D E P E N D E N C I E S --> |
| 124 | <dependency> |
| 125 | <groupId>org.codehaus.groovy</groupId> |
| 126 | <artifactId>groovy</artifactId> |
| 127 | <scope>test</scope> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>org.codehaus.groovy</groupId> |
| 131 | <artifactId>groovy-json</artifactId> |
| 132 | <scope>test</scope> |
| 133 | </dependency> |
| 134 | <dependency> |
| 135 | <groupId>org.spockframework</groupId> |
| 136 | <artifactId>spock-core</artifactId> |
| 137 | <scope>test</scope> |
| 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>org.spockframework</groupId> |
| 141 | <artifactId>spock-spring</artifactId> |
| 142 | <scope>test</scope> |
| 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>org.springframework.boot</groupId> |
| 146 | <artifactId>spring-boot-starter-test</artifactId> |
| 147 | <scope>test</scope> |
| 148 | </dependency> |
| 149 | <dependency> |
| 150 | <groupId>cglib</groupId> |
| 151 | <artifactId>cglib-nodep</artifactId> |
| 152 | <scope>test</scope> |
| 153 | </dependency> |
| 154 | <dependency> |
| 155 | <groupId>org.testcontainers</groupId> |
| 156 | <artifactId>kafka</artifactId> |
| 157 | <scope>test</scope> |
| 158 | </dependency> |
| 159 | <dependency> |
| 160 | <groupId>org.springframework.kafka</groupId> |
| 161 | <artifactId>spring-kafka-test</artifactId> |
| 162 | <scope>test</scope> |
| 163 | </dependency> |
| 164 | <dependency> |
| 165 | <groupId>org.aspectj</groupId> |
| 166 | <artifactId>aspectjrt</artifactId> |
| 167 | <scope>test</scope> |
| 168 | </dependency> |
| 169 | </dependencies> |
| 170 | </project> |