Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Timoney, Dan (dt5972) | ea65269 | 2019-01-08 15:56:26 -0500 | [diff] [blame] | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <parent> |
Dan Timoney | 1f4e903 | 2021-01-25 14:47:00 -0500 | [diff] [blame] | 6 | <groupId>org.onap.ccsdk.distribution</groupId> |
| 7 | <artifactId>distribution-root</artifactId> |
Dan Timoney | 3a8135c | 2024-10-09 10:48:01 -0400 | [diff] [blame^] | 8 | <version>2.0.1-SNAPSHOT</version> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 9 | </parent> |
| 10 | |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 11 | <artifactId>dependencies</artifactId> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 12 | <packaging>pom</packaging> |
| 13 | |
Singal, Kapil (ks220y) | b6e7d96 | 2020-12-17 14:37:06 -0500 | [diff] [blame] | 14 | <name>ccsdk-distribution :: ${project.artifactId}</name> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 15 | |
| 16 | <properties> |
| 17 | <include.transitive.dependencies>false</include.transitive.dependencies> |
| 18 | </properties> |
| 19 | |
Dan Timoney | 1f4e903 | 2021-01-25 14:47:00 -0500 | [diff] [blame] | 20 | <dependencyManagement> |
| 21 | <dependencies> |
| 22 | <dependency> |
Dan Timoney | 1f4e903 | 2021-01-25 14:47:00 -0500 | [diff] [blame] | 23 | <groupId>org.onap.ccsdk.parent</groupId> |
| 24 | <artifactId>dependencies-odl-bom</artifactId> |
Dan Timoney | f14dd8f | 2024-10-01 12:31:50 -0400 | [diff] [blame] | 25 | <version>3.0.0</version> |
Dan Timoney | 1f4e903 | 2021-01-25 14:47:00 -0500 | [diff] [blame] | 26 | <scope>import</scope> |
| 27 | <type>pom</type> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>org.aspectj</groupId> |
| 31 | <artifactId>aspectjrt</artifactId> |
| 32 | <version>1.9.6</version> |
| 33 | </dependency> |
| 34 | </dependencies> |
| 35 | </dependencyManagement> |
| 36 | |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 37 | <dependencies> |
| 38 | <dependency> |
Timoney, Dan (dt5972) | 1555acf | 2019-07-12 08:44:37 -0400 | [diff] [blame] | 39 | <groupId>ch.qos.logback</groupId> |
| 40 | <artifactId>logback-classic</artifactId> |
Michael Dürre | b62ae2e | 2022-06-13 05:45:24 +0200 | [diff] [blame] | 41 | <version>${logback.version}</version> |
Alexis de Talhouët | 268c5e1 | 2018-09-12 15:27:33 -0400 | [diff] [blame] | 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>ch.qos.logback</groupId> |
| 45 | <artifactId>logback-core</artifactId> |
Michael Dürre | b62ae2e | 2022-06-13 05:45:24 +0200 | [diff] [blame] | 46 | <version>${logback.version}</version> |
Alexis de Talhouët | 268c5e1 | 2018-09-12 15:27:33 -0400 | [diff] [blame] | 47 | </dependency> |
| 48 | <dependency> |
Timoney, Dan (dt5972) | 1555acf | 2019-07-12 08:44:37 -0400 | [diff] [blame] | 49 | <groupId>com.att.eelf</groupId> |
| 50 | <artifactId>eelf-core</artifactId> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 54 | <artifactId>jackson-dataformat-xml</artifactId> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 58 | <artifactId>jackson-dataformat-yaml</artifactId> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>com.fasterxml.jackson.module</groupId> |
| 62 | <artifactId>jackson-module-jsonSchema</artifactId> |
Alexis de Talhouët | 268c5e1 | 2018-09-12 15:27:33 -0400 | [diff] [blame] | 63 | </dependency> |
| 64 | <dependency> |
Dan Timoney | 31d15ef | 2020-09-04 11:44:40 -0400 | [diff] [blame] | 65 | <groupId>com.google.code.findbugs</groupId> |
| 66 | <artifactId>annotations</artifactId> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 67 | </dependency> |
| 68 | <dependency> |
Dan Timoney | 31d15ef | 2020-09-04 11:44:40 -0400 | [diff] [blame] | 69 | <groupId>com.jayway.jsonpath</groupId> |
| 70 | <artifactId>json-path</artifactId> |
Timoney, Dan (dt5972) | b52972c | 2019-12-05 16:05:49 -0500 | [diff] [blame] | 71 | </dependency> |
| 72 | <dependency> |
Dan Timoney | 1f4e903 | 2021-01-25 14:47:00 -0500 | [diff] [blame] | 73 | <groupId>com.sun.xml.bind</groupId> |
| 74 | <artifactId>jaxb-core</artifactId> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>com.sun.xml.bind</groupId> |
| 78 | <artifactId>jaxb-impl</artifactId> |
| 79 | </dependency> |
| 80 | <dependency> |
Singal, Kapil (ks220y) | 94a7c37 | 2021-06-09 12:14:54 -0400 | [diff] [blame] | 81 | <groupId>javax.xml.bind</groupId> |
| 82 | <artifactId>jaxb-api</artifactId> |
| 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>jakarta.activation</groupId> |
| 86 | <artifactId>jakarta.activation-api</artifactId> |
| 87 | </dependency> |
| 88 | <!-- Below provides javax.jws --> |
| 89 | <dependency> |
| 90 | <groupId>com.sun.xml.ws</groupId> |
| 91 | <artifactId>jaxws-ri</artifactId> |
| 92 | <type>pom</type> |
| 93 | </dependency> |
| 94 | <dependency> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 95 | <groupId>javax</groupId> |
| 96 | <artifactId>javaee-api</artifactId> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 97 | </dependency> |
Ravi Pendurty | 9d49362 | 2023-10-07 13:15:24 +0530 | [diff] [blame] | 98 | <dependency> |
Michael Dürre | 5a76314 | 2023-03-21 12:45:42 +0100 | [diff] [blame] | 99 | <groupId>javax.annotation</groupId> |
| 100 | <artifactId>javax.annotation-api</artifactId> |
| 101 | <version>1.3.1</version> |
| 102 | </dependency> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 103 | <dependency> |
Dan Timoney | 1f4e903 | 2021-01-25 14:47:00 -0500 | [diff] [blame] | 104 | <groupId>org.antlr</groupId> |
| 105 | <artifactId>antlr4-runtime</artifactId> |
| 106 | </dependency> |
| 107 | <dependency> |
Timoney, Dan (dt5972) | 1555acf | 2019-07-12 08:44:37 -0400 | [diff] [blame] | 108 | <groupId>org.apache.commons</groupId> |
| 109 | <artifactId>commons-text</artifactId> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 110 | </dependency> |
| 111 | <dependency> |
Timoney, Dan (dt5972) | 4ec0326 | 2019-12-12 10:35:10 -0500 | [diff] [blame] | 112 | <groupId>org.apache.httpcomponents</groupId> |
| 113 | <artifactId>httpclient</artifactId> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>org.apache.httpcomponents</groupId> |
| 117 | <artifactId>httpcore</artifactId> |
| 118 | </dependency> |
| 119 | <dependency> |
Timoney, Dan (dt5972) | 1555acf | 2019-07-12 08:44:37 -0400 | [diff] [blame] | 120 | <groupId>org.apache.tomcat</groupId> |
| 121 | <artifactId>tomcat-jdbc</artifactId> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 122 | </dependency> |
Alexis de Talhouët | 268c5e1 | 2018-09-12 15:27:33 -0400 | [diff] [blame] | 123 | <dependency> |
| 124 | <groupId>org.apache.velocity</groupId> |
| 125 | <artifactId>velocity</artifactId> |
Alexis de Talhouët | 268c5e1 | 2018-09-12 15:27:33 -0400 | [diff] [blame] | 126 | </dependency> |
| 127 | <dependency> |
Timoney, Dan (dt5972) | c71f34b | 2019-10-04 14:39:53 -0400 | [diff] [blame] | 128 | <groupId>org.apache.velocity</groupId> |
| 129 | <artifactId>velocity-engine-core</artifactId> |
Timoney, Dan (dt5972) | c71f34b | 2019-10-04 14:39:53 -0400 | [diff] [blame] | 130 | </dependency> |
| 131 | <dependency> |
Timoney, Dan (dt5972) | b52972c | 2019-12-05 16:05:49 -0500 | [diff] [blame] | 132 | <groupId>org.codehaus.jettison</groupId> |
| 133 | <artifactId>jettison</artifactId> |
| 134 | </dependency> |
| 135 | <dependency> |
Michael DÜrre | 6e99580 | 2022-01-19 14:29:29 +0100 | [diff] [blame] | 136 | <groupId>org.dom4j</groupId> |
| 137 | <artifactId>dom4j</artifactId> |
| 138 | </dependency> |
Ravi Pendurty | 9d49362 | 2023-10-07 13:15:24 +0530 | [diff] [blame] | 139 | <dependency> |
| 140 | <groupId>org.glassfish.jaxb</groupId> |
| 141 | <artifactId>jaxb-runtime</artifactId> |
| 142 | </dependency> |
Michael DÜrre | 6e99580 | 2022-01-19 14:29:29 +0100 | [diff] [blame] | 143 | <dependency> |
Dan Timoney | 1f4e903 | 2021-01-25 14:47:00 -0500 | [diff] [blame] | 144 | <groupId>org.glassfish.jersey.bundles.repackaged</groupId> |
| 145 | <artifactId>jersey-guava</artifactId> |
| 146 | </dependency> |
| 147 | <dependency> |
Timoney, Dan (dt5972) | b52972c | 2019-12-05 16:05:49 -0500 | [diff] [blame] | 148 | <groupId>org.glassfish.jersey.media</groupId> |
| 149 | <artifactId>jersey-media-multipart</artifactId> |
| 150 | </dependency> |
| 151 | <dependency> |
| 152 | <groupId>org.glassfish.jersey.media</groupId> |
| 153 | <artifactId>jersey-media-sse</artifactId> |
| 154 | </dependency> |
| 155 | <dependency> |
| 156 | <groupId>org.glassfish.jersey.security</groupId> |
| 157 | <artifactId>oauth1-signature</artifactId> |
| 158 | </dependency> |
| 159 | <dependency> |
| 160 | <groupId>org.glassfish.jersey.security</groupId> |
| 161 | <artifactId>oauth1-client</artifactId> |
| 162 | </dependency> |
Ravi Pendurty | 9d49362 | 2023-10-07 13:15:24 +0530 | [diff] [blame] | 163 | <dependency> |
| 164 | <groupId>org.json</groupId> |
| 165 | <artifactId>json</artifactId> |
| 166 | <version>20201115</version> |
| 167 | </dependency> |
Timoney, Dan (dt5972) | b52972c | 2019-12-05 16:05:49 -0500 | [diff] [blame] | 168 | <dependency> |
Timoney, Dan (dt5972) | bcc6156 | 2020-01-07 10:06:08 -0500 | [diff] [blame] | 169 | <groupId>org.mariadb.jdbc</groupId> |
| 170 | <artifactId>mariadb-java-client</artifactId> |
| 171 | <type>jar</type> |
| 172 | </dependency> |
| 173 | <dependency> |
Timoney, Dan (dt5972) | c71f34b | 2019-10-04 14:39:53 -0400 | [diff] [blame] | 174 | <groupId>org.onap.logging-analytics</groupId> |
| 175 | <artifactId>logging-filter-base</artifactId> |
Sandeep Shah | ffd2a83 | 2019-07-12 19:27:02 -0500 | [diff] [blame] | 176 | </dependency> |
| 177 | <dependency> |
Singal, Kapil (ks220y) | 94a7c37 | 2021-06-09 12:14:54 -0400 | [diff] [blame] | 178 | <groupId>org.onap.logging-analytics</groupId> |
| 179 | <artifactId>logging-slf4j</artifactId> |
| 180 | </dependency> |
| 181 | <dependency> |
Timoney, Dan (dt5972) | 1555acf | 2019-07-12 08:44:37 -0400 | [diff] [blame] | 182 | <groupId>org.slf4j</groupId> |
| 183 | <artifactId>jcl-over-slf4j</artifactId> |
Alexis de Talhouët | 268c5e1 | 2018-09-12 15:27:33 -0400 | [diff] [blame] | 184 | </dependency> |
| 185 | <dependency> |
Timoney, Dan (dt5972) | 1555acf | 2019-07-12 08:44:37 -0400 | [diff] [blame] | 186 | <groupId>org.springframework</groupId> |
| 187 | <artifactId>spring-beans</artifactId> |
Alexis de Talhouët | 268c5e1 | 2018-09-12 15:27:33 -0400 | [diff] [blame] | 188 | </dependency> |
| 189 | <dependency> |
Timoney, Dan (dt5972) | 1555acf | 2019-07-12 08:44:37 -0400 | [diff] [blame] | 190 | <groupId>org.springframework</groupId> |
| 191 | <artifactId>spring-context</artifactId> |
| 192 | </dependency> |
| 193 | <dependency> |
| 194 | <groupId>org.springframework</groupId> |
| 195 | <artifactId>spring-jdbc</artifactId> |
| 196 | </dependency> |
| 197 | <dependency> |
| 198 | <groupId>org.springframework</groupId> |
| 199 | <artifactId>spring-web</artifactId> |
Alexis de Talhouët | 268c5e1 | 2018-09-12 15:27:33 -0400 | [diff] [blame] | 200 | </dependency> |
Dan Timoney | 31d15ef | 2020-09-04 11:44:40 -0400 | [diff] [blame] | 201 | <dependency> |
| 202 | <groupId>org.apache.servicemix.specs</groupId> |
| 203 | <artifactId>org.apache.servicemix.specs.jaxws-api-2.3</artifactId> |
| 204 | <version>2.3_1</version> |
| 205 | </dependency> |
Michael DÜrre | d783f84 | 2021-04-14 10:41:24 +0200 | [diff] [blame] | 206 | <dependency> |
| 207 | <groupId>com.google.j2objc</groupId> |
| 208 | <artifactId>j2objc-annotations</artifactId> |
Michael Dürre | 74c365e | 2024-03-14 12:07:25 +0100 | [diff] [blame] | 209 | <version>2.8</version> |
Michael DÜrre | d783f84 | 2021-04-14 10:41:24 +0200 | [diff] [blame] | 210 | </dependency> |
Singal, Kapil (ks220y) | 94a7c37 | 2021-06-09 12:14:54 -0400 | [diff] [blame] | 211 | <!-- Below is required by com.google.guava : guava : jar : 28.2-jre --> |
| 212 | <dependency> |
| 213 | <groupId>com.google.guava</groupId> |
| 214 | <artifactId>listenablefuture</artifactId> |
| 215 | </dependency> |
| 216 | <dependency> |
| 217 | <groupId>com.google.errorprone</groupId> |
| 218 | <artifactId>error_prone_annotations</artifactId> |
Michael Dürre | 74c365e | 2024-03-14 12:07:25 +0100 | [diff] [blame] | 219 | <version>2.24.0</version> |
Singal, Kapil (ks220y) | 94a7c37 | 2021-06-09 12:14:54 -0400 | [diff] [blame] | 220 | </dependency> |
Ravi Pendurty | 9d49362 | 2023-10-07 13:15:24 +0530 | [diff] [blame] | 221 | <!-- Kafka Dependency --> |
| 222 | <dependency> |
| 223 | <groupId>org.apache.kafka</groupId> |
| 224 | <artifactId>kafka-clients</artifactId> |
| 225 | <version>3.0.0</version> |
| 226 | </dependency> |
Timoney, Dan (dt5972) | 661e2da | 2018-08-10 15:52:20 -0400 | [diff] [blame] | 227 | </dependencies> |
| 228 | |
| 229 | <build> |
| 230 | <plugins> |
| 231 | <plugin> |
| 232 | <artifactId>maven-assembly-plugin</artifactId> |
| 233 | <version>2.6</version> |
| 234 | <executions> |
| 235 | <execution> |
| 236 | <id>maven-repo-zip</id> |
| 237 | <goals> |
| 238 | <goal>single</goal> |
| 239 | </goals> |
| 240 | <phase>package</phase> |
| 241 | <configuration> |
| 242 | <attach>true</attach> |
| 243 | <finalName>stage/dependencies-${project.version}</finalName> |
| 244 | <descriptors> |
| 245 | <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor> |
| 246 | </descriptors> |
| 247 | <appendAssemblyId>true</appendAssemblyId> |
| 248 | </configuration> |
| 249 | </execution> |
| 250 | </executions> |
| 251 | </plugin> |
| 252 | <plugin> |
| 253 | <groupId>org.apache.maven.plugins</groupId> |
| 254 | <artifactId>maven-dependency-plugin</artifactId> |
| 255 | <executions> |
| 256 | <execution> |
| 257 | <id>copy-dependencies</id> |
| 258 | <goals> |
| 259 | <goal>copy-dependencies</goal> |
| 260 | </goals> |
| 261 | <phase>prepare-package</phase> |
| 262 | <configuration> |
| 263 | <transitive>false</transitive> |
| 264 | <outputDirectory>${project.build.directory}/assembly/system</outputDirectory> |
| 265 | <overWriteReleases>false</overWriteReleases> |
| 266 | <overWriteSnapshots>true</overWriteSnapshots> |
| 267 | <overWriteIfNewer>true</overWriteIfNewer> |
| 268 | <useRepositoryLayout>true</useRepositoryLayout> |
| 269 | <addParentPoms>false</addParentPoms> |
| 270 | <copyPom>false</copyPom> |
| 271 | <excludeGroupIds>org.onap.ccsdk.sli.core,org.opendaylight</excludeGroupIds> |
| 272 | <scope>provided</scope> |
| 273 | </configuration> |
| 274 | </execution> |
| 275 | </executions> |
| 276 | </plugin> |
| 277 | </plugins> |
| 278 | </build> |
| 279 | </project> |