JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
emaclee | ea7d1b4 | 2024-03-24 19:05:34 +0000 | [diff] [blame] | 4 | Copyright (C) 2021-2024 Nordix Foundation |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 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 |
Rudrangi Anupriya | 14d6a9b | 2024-11-02 00:16:58 +0530 | [diff] [blame] | 8 | Modifications Copyright (C) 2024 TechMahindra Ltd. |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 9 | ================================================================================ |
| 10 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 11 | you may not use this file except in compliance with the License. |
| 12 | You may obtain a copy of the License at |
| 13 | |
| 14 | http://www.apache.org/licenses/LICENSE-2.0 |
| 15 | |
| 16 | Unless required by applicable law or agreed to in writing, software |
| 17 | distributed under the License is distributed on an "AS IS" BASIS, |
| 18 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 | See the License for the specific language governing permissions and |
| 20 | limitations under the License. |
| 21 | |
| 22 | SPDX-License-Identifier: Apache-2.0 |
| 23 | ============LICENSE_END========================================================= |
| 24 | --> |
| 25 | |
| 26 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 27 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 28 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 29 | <modelVersion>4.0.0</modelVersion> |
| 30 | <parent> |
| 31 | <groupId>org.onap.cps</groupId> |
| 32 | <artifactId>cps-parent</artifactId> |
mpriyank | 08bcac3 | 2024-12-02 14:26:03 +0000 | [diff] [blame^] | 33 | <version>3.6.0-SNAPSHOT</version> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 34 | <relativePath>../cps-parent/pom.xml</relativePath> |
| 35 | </parent> |
| 36 | |
| 37 | <artifactId>cps-service</artifactId> |
| 38 | |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 39 | <dependencies> |
| 40 | <dependency> |
rajesh.kumar | eb3a808 | 2024-02-23 20:29:59 +0530 | [diff] [blame] | 41 | <groupId>org.apache.commons</groupId> |
| 42 | <artifactId>commons-lang3</artifactId> |
| 43 | </dependency> |
| 44 | <dependency> |
egernug | 42daf63 | 2023-10-03 12:56:29 +0100 | [diff] [blame] | 45 | <groupId>org.springframework</groupId> |
| 46 | <artifactId>spring-messaging</artifactId> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.springframework.boot</groupId> |
| 50 | <artifactId>spring-boot-starter-cache</artifactId> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.springframework.boot</groupId> |
| 54 | <artifactId>spring-boot-starter-aop</artifactId> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.springframework.boot</groupId> |
| 58 | <artifactId>spring-boot-starter-validation</artifactId> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.springframework.kafka</groupId> |
| 62 | <artifactId>spring-kafka</artifactId> |
| 63 | </dependency> |
| 64 | <dependency> |
ToineSiebelink | 0fa2fab | 2023-01-19 16:45:58 +0000 | [diff] [blame] | 65 | <groupId>com.github.ben-manes.caffeine</groupId> |
| 66 | <artifactId>caffeine</artifactId> |
| 67 | </dependency> |
ToineSiebelink | 77e469b | 2024-10-01 18:40:39 +0100 | [diff] [blame] | 68 | <!-- Disable SpotBug Rules --> |
| 69 | <dependency> |
| 70 | <groupId>com.github.spotbugs</groupId> |
| 71 | <artifactId>spotbugs-annotations</artifactId> |
| 72 | </dependency> |
ToineSiebelink | 0fa2fab | 2023-01-19 16:45:58 +0000 | [diff] [blame] | 73 | <dependency> |
| 74 | <!-- For parsing JSON object --> |
| 75 | <groupId>com.google.code.gson</groupId> |
| 76 | <artifactId>gson</artifactId> |
| 77 | </dependency> |
| 78 | <dependency> |
ToineSiebelink | 0fa2fab | 2023-01-19 16:45:58 +0000 | [diff] [blame] | 79 | <groupId>io.micrometer</groupId> |
| 80 | <artifactId>micrometer-core</artifactId> |
| 81 | </dependency> |
| 82 | <dependency> |
rajesh.kumar | eb3a808 | 2024-02-23 20:29:59 +0530 | [diff] [blame] | 83 | <groupId>io.cloudevents</groupId> |
| 84 | <artifactId>cloudevents-json-jackson</artifactId> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>io.cloudevents</groupId> |
| 88 | <artifactId>cloudevents-kafka</artifactId> |
| 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>io.cloudevents</groupId> |
| 92 | <artifactId>cloudevents-spring</artifactId> |
| 93 | </dependency> |
| 94 | <dependency> |
egernug | 42daf63 | 2023-10-03 12:56:29 +0100 | [diff] [blame] | 95 | <groupId>jakarta.validation</groupId> |
| 96 | <artifactId>jakarta.validation-api</artifactId> |
| 97 | </dependency> |
| 98 | <dependency> |
ToineSiebelink | 0fa2fab | 2023-01-19 16:45:58 +0000 | [diff] [blame] | 99 | <groupId>net.logstash.logback</groupId> |
| 100 | <artifactId>logstash-logback-encoder</artifactId> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>org.codehaus.janino</groupId> |
| 104 | <artifactId>janino</artifactId> |
| 105 | </dependency> |
| 106 | <dependency> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 107 | <groupId>org.onap.cps</groupId> |
| 108 | <artifactId>cps-events</artifactId> |
| 109 | </dependency> |
| 110 | <dependency> |
ToineSiebelink | 0fa2fab | 2023-01-19 16:45:58 +0000 | [diff] [blame] | 111 | <groupId>org.onap.cps</groupId> |
| 112 | <artifactId>cps-path-parser</artifactId> |
| 113 | </dependency> |
| 114 | <dependency> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 115 | <groupId>org.opendaylight.yangtools</groupId> |
| 116 | <artifactId>yang-model-api</artifactId> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>org.opendaylight.yangtools</groupId> |
| 120 | <artifactId>yang-parser-api</artifactId> |
| 121 | </dependency> |
| 122 | <dependency> |
| 123 | <groupId>org.opendaylight.yangtools</groupId> |
| 124 | <artifactId>yang-parser-impl</artifactId> |
| 125 | </dependency> |
| 126 | <dependency> |
ToineSiebelink | 0fa2fab | 2023-01-19 16:45:58 +0000 | [diff] [blame] | 127 | <!-- required for processing yang data in json format --> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 128 | <groupId>org.opendaylight.yangtools</groupId> |
| 129 | <artifactId>yang-data-codec-gson</artifactId> |
| 130 | </dependency> |
| 131 | <dependency> |
Michal Jagiello | 6ce84d9 | 2022-12-13 07:40:19 +0000 | [diff] [blame] | 132 | <groupId>org.opendaylight.yangtools</groupId> |
| 133 | <artifactId>yang-data-codec-xml</artifactId> |
| 134 | </dependency> |
| 135 | <dependency> |
ToineSiebelink | 0fa2fab | 2023-01-19 16:45:58 +0000 | [diff] [blame] | 136 | <groupId>org.opendaylight.yangtools</groupId> |
| 137 | <artifactId>yang-model-util</artifactId> |
| 138 | </dependency> |
| 139 | <dependency> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 140 | <groupId>org.projectlombok</groupId> |
| 141 | <artifactId>lombok</artifactId> |
| 142 | </dependency> |
| 143 | <dependency> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 144 | <!-- For logging --> |
| 145 | <groupId>org.slf4j</groupId> |
| 146 | <artifactId>slf4j-api</artifactId> |
| 147 | </dependency> |
ToineSiebelink | 77e469b | 2024-10-01 18:40:39 +0100 | [diff] [blame] | 148 | |
egernug | 42daf63 | 2023-10-03 12:56:29 +0100 | [diff] [blame] | 149 | <!-- T E S T D E P E N D E N C I E S --> |
egernug | 477bd46 | 2023-09-21 17:51:21 +0100 | [diff] [blame] | 150 | <dependency> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 151 | <groupId>org.codehaus.groovy</groupId> |
| 152 | <artifactId>groovy</artifactId> |
| 153 | <scope>test</scope> |
| 154 | </dependency> |
| 155 | <dependency> |
| 156 | <groupId>org.codehaus.groovy</groupId> |
| 157 | <artifactId>groovy-json</artifactId> |
| 158 | <scope>test</scope> |
| 159 | </dependency> |
| 160 | <dependency> |
| 161 | <groupId>org.spockframework</groupId> |
| 162 | <artifactId>spock-core</artifactId> |
| 163 | <scope>test</scope> |
| 164 | </dependency> |
| 165 | <dependency> |
| 166 | <groupId>org.spockframework</groupId> |
| 167 | <artifactId>spock-spring</artifactId> |
| 168 | <scope>test</scope> |
| 169 | </dependency> |
| 170 | <dependency> |
| 171 | <groupId>org.springframework.boot</groupId> |
| 172 | <artifactId>spring-boot-starter-test</artifactId> |
| 173 | <scope>test</scope> |
| 174 | </dependency> |
| 175 | <dependency> |
| 176 | <groupId>cglib</groupId> |
| 177 | <artifactId>cglib-nodep</artifactId> |
| 178 | <scope>test</scope> |
| 179 | </dependency> |
| 180 | <dependency> |
| 181 | <groupId>org.testcontainers</groupId> |
| 182 | <artifactId>kafka</artifactId> |
| 183 | <scope>test</scope> |
emaclee | ea7d1b4 | 2024-03-24 19:05:34 +0000 | [diff] [blame] | 184 | <exclusions> |
| 185 | <exclusion> |
| 186 | <groupId>junit</groupId> |
| 187 | <artifactId>junit</artifactId> |
| 188 | </exclusion> |
| 189 | </exclusions> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 190 | </dependency> |
| 191 | <dependency> |
| 192 | <groupId>org.springframework.kafka</groupId> |
| 193 | <artifactId>spring-kafka-test</artifactId> |
| 194 | <scope>test</scope> |
| 195 | </dependency> |
Rudrangi Anupriya | 14d6a9b | 2024-11-02 00:16:58 +0530 | [diff] [blame] | 196 | <dependency> |
| 197 | <groupId>org.springframework</groupId> |
| 198 | <artifactId>spring-web</artifactId> |
| 199 | </dependency> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 200 | </dependencies> |
| 201 | </project> |