blob: 1a1f432130077d957136d0f23853671be6f5cc15 [file] [log] [blame]
Timoney, Dan (dt5972)661e2da2018-08-10 15:52:20 -04001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)ea652692019-01-08 15:56:26 -05002<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)661e2da2018-08-10 15:52:20 -04003 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
Dan Timoney1f4e9032021-01-25 14:47:00 -05006 <groupId>org.onap.ccsdk.distribution</groupId>
7 <artifactId>distribution-root</artifactId>
Michael DÜrred32e6972021-10-29 08:08:28 +02008 <version>1.3.1-SNAPSHOT</version>
Timoney, Dan (dt5972)661e2da2018-08-10 15:52:20 -04009 </parent>
10
Timoney, Dan (dt5972)661e2da2018-08-10 15:52:20 -040011 <artifactId>dependencies</artifactId>
Timoney, Dan (dt5972)661e2da2018-08-10 15:52:20 -040012 <packaging>pom</packaging>
13
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -050014 <name>ccsdk-distribution :: ${project.artifactId}</name>
Timoney, Dan (dt5972)661e2da2018-08-10 15:52:20 -040015
16 <properties>
17 <include.transitive.dependencies>false</include.transitive.dependencies>
18 </properties>
19
Dan Timoney1f4e9032021-01-25 14:47:00 -050020 <dependencyManagement>
21 <dependencies>
22 <dependency>
Dan Timoney1f4e9032021-01-25 14:47:00 -050023 <groupId>org.onap.ccsdk.parent</groupId>
24 <artifactId>dependencies-odl-bom</artifactId>
Michael DÜrre6e995802022-01-19 14:29:29 +010025 <version>2.3.3-SNAPSHOT</version>
Dan Timoney1f4e9032021-01-25 14:47:00 -050026 <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)661e2da2018-08-10 15:52:20 -040037 <dependencies>
38 <dependency>
Timoney, Dan (dt5972)1555acf2019-07-12 08:44:37 -040039 <groupId>ch.qos.logback</groupId>
40 <artifactId>logback-classic</artifactId>
Alexis de Talhouët268c5e12018-09-12 15:27:33 -040041 </dependency>
42 <dependency>
43 <groupId>ch.qos.logback</groupId>
44 <artifactId>logback-core</artifactId>
Alexis de Talhouët268c5e12018-09-12 15:27:33 -040045 </dependency>
46 <dependency>
Timoney, Dan (dt5972)1555acf2019-07-12 08:44:37 -040047 <groupId>com.att.eelf</groupId>
48 <artifactId>eelf-core</artifactId>
49 </dependency>
50 <dependency>
51 <groupId>com.fasterxml.jackson.dataformat</groupId>
52 <artifactId>jackson-dataformat-xml</artifactId>
53 </dependency>
54 <dependency>
55 <groupId>com.fasterxml.jackson.dataformat</groupId>
56 <artifactId>jackson-dataformat-yaml</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>com.fasterxml.jackson.module</groupId>
60 <artifactId>jackson-module-jsonSchema</artifactId>
Alexis de Talhouët268c5e12018-09-12 15:27:33 -040061 </dependency>
62 <dependency>
Dan Timoney31d15ef2020-09-04 11:44:40 -040063 <groupId>com.google.code.findbugs</groupId>
64 <artifactId>annotations</artifactId>
Timoney, Dan (dt5972)661e2da2018-08-10 15:52:20 -040065 </dependency>
66 <dependency>
Dan Timoney31d15ef2020-09-04 11:44:40 -040067 <groupId>com.jayway.jsonpath</groupId>
68 <artifactId>json-path</artifactId>
Timoney, Dan (dt5972)b52972c2019-12-05 16:05:49 -050069 </dependency>
70 <dependency>
Dan Timoney1f4e9032021-01-25 14:47:00 -050071 <groupId>com.sun.xml.bind</groupId>
72 <artifactId>jaxb-core</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>com.sun.xml.bind</groupId>
76 <artifactId>jaxb-impl</artifactId>
77 </dependency>
78 <dependency>
Singal, Kapil (ks220y)94a7c372021-06-09 12:14:54 -040079 <groupId>javax.xml.bind</groupId>
80 <artifactId>jaxb-api</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>jakarta.activation</groupId>
84 <artifactId>jakarta.activation-api</artifactId>
85 </dependency>
86 <!-- Below provides javax.jws -->
87 <dependency>
88 <groupId>com.sun.xml.ws</groupId>
89 <artifactId>jaxws-ri</artifactId>
90 <type>pom</type>
91 </dependency>
92 <dependency>
Timoney, Dan (dt5972)661e2da2018-08-10 15:52:20 -040093 <groupId>javax</groupId>
94 <artifactId>javaee-api</artifactId>
Timoney, Dan (dt5972)661e2da2018-08-10 15:52:20 -040095 </dependency>
96 <dependency>
Dan Timoney1f4e9032021-01-25 14:47:00 -050097 <groupId>org.antlr</groupId>
98 <artifactId>antlr4-runtime</artifactId>
99 </dependency>
100 <dependency>
Timoney, Dan (dt5972)1555acf2019-07-12 08:44:37 -0400101 <groupId>org.apache.commons</groupId>
102 <artifactId>commons-text</artifactId>
Timoney, Dan (dt5972)661e2da2018-08-10 15:52:20 -0400103 </dependency>
104 <dependency>
Timoney, Dan (dt5972)4ec03262019-12-12 10:35:10 -0500105 <groupId>org.apache.httpcomponents</groupId>
106 <artifactId>httpclient</artifactId>
107 </dependency>
108 <dependency>
109 <groupId>org.apache.httpcomponents</groupId>
110 <artifactId>httpcore</artifactId>
111 </dependency>
112 <dependency>
Timoney, Dan (dt5972)1555acf2019-07-12 08:44:37 -0400113 <groupId>org.apache.tomcat</groupId>
114 <artifactId>tomcat-jdbc</artifactId>
Timoney, Dan (dt5972)661e2da2018-08-10 15:52:20 -0400115 </dependency>
Alexis de Talhouët268c5e12018-09-12 15:27:33 -0400116 <dependency>
117 <groupId>org.apache.velocity</groupId>
118 <artifactId>velocity</artifactId>
Alexis de Talhouët268c5e12018-09-12 15:27:33 -0400119 </dependency>
120 <dependency>
Timoney, Dan (dt5972)c71f34b2019-10-04 14:39:53 -0400121 <groupId>org.apache.velocity</groupId>
122 <artifactId>velocity-engine-core</artifactId>
Timoney, Dan (dt5972)c71f34b2019-10-04 14:39:53 -0400123 </dependency>
124 <dependency>
Timoney, Dan (dt5972)b52972c2019-12-05 16:05:49 -0500125 <groupId>org.codehaus.jettison</groupId>
126 <artifactId>jettison</artifactId>
127 </dependency>
128 <dependency>
Michael DÜrre6e995802022-01-19 14:29:29 +0100129 <groupId>org.dom4j</groupId>
130 <artifactId>dom4j</artifactId>
131 </dependency>
132 <dependency>
Dan Timoney1f4e9032021-01-25 14:47:00 -0500133 <groupId>org.glassfish.jersey.bundles.repackaged</groupId>
134 <artifactId>jersey-guava</artifactId>
135 </dependency>
136 <dependency>
Timoney, Dan (dt5972)b52972c2019-12-05 16:05:49 -0500137 <groupId>org.glassfish.jersey.media</groupId>
138 <artifactId>jersey-media-multipart</artifactId>
139 </dependency>
140 <dependency>
141 <groupId>org.glassfish.jersey.media</groupId>
142 <artifactId>jersey-media-sse</artifactId>
143 </dependency>
144 <dependency>
145 <groupId>org.glassfish.jersey.security</groupId>
146 <artifactId>oauth1-signature</artifactId>
147 </dependency>
148 <dependency>
149 <groupId>org.glassfish.jersey.security</groupId>
150 <artifactId>oauth1-client</artifactId>
151 </dependency>
152 <dependency>
Timoney, Dan (dt5972)bcc61562020-01-07 10:06:08 -0500153 <groupId>org.mariadb.jdbc</groupId>
154 <artifactId>mariadb-java-client</artifactId>
155 <type>jar</type>
156 </dependency>
157 <dependency>
Timoney, Dan (dt5972)c71f34b2019-10-04 14:39:53 -0400158 <groupId>org.onap.logging-analytics</groupId>
159 <artifactId>logging-filter-base</artifactId>
Sandeep Shahffd2a832019-07-12 19:27:02 -0500160 </dependency>
161 <dependency>
Singal, Kapil (ks220y)94a7c372021-06-09 12:14:54 -0400162 <groupId>org.onap.logging-analytics</groupId>
163 <artifactId>logging-slf4j</artifactId>
164 </dependency>
165 <dependency>
Timoney, Dan (dt5972)1555acf2019-07-12 08:44:37 -0400166 <groupId>org.slf4j</groupId>
167 <artifactId>jcl-over-slf4j</artifactId>
Alexis de Talhouët268c5e12018-09-12 15:27:33 -0400168 </dependency>
169 <dependency>
Timoney, Dan (dt5972)1555acf2019-07-12 08:44:37 -0400170 <groupId>org.springframework</groupId>
171 <artifactId>spring-beans</artifactId>
Alexis de Talhouët268c5e12018-09-12 15:27:33 -0400172 </dependency>
173 <dependency>
Timoney, Dan (dt5972)1555acf2019-07-12 08:44:37 -0400174 <groupId>org.springframework</groupId>
175 <artifactId>spring-context</artifactId>
176 </dependency>
177 <dependency>
178 <groupId>org.springframework</groupId>
179 <artifactId>spring-jdbc</artifactId>
180 </dependency>
181 <dependency>
182 <groupId>org.springframework</groupId>
183 <artifactId>spring-web</artifactId>
Alexis de Talhouët268c5e12018-09-12 15:27:33 -0400184 </dependency>
Dan Timoney31d15ef2020-09-04 11:44:40 -0400185 <dependency>
186 <groupId>org.apache.servicemix.specs</groupId>
187 <artifactId>org.apache.servicemix.specs.jaxws-api-2.3</artifactId>
188 <version>2.3_1</version>
189 </dependency>
Michael DÜrred783f842021-04-14 10:41:24 +0200190 <dependency>
191 <groupId>com.google.j2objc</groupId>
192 <artifactId>j2objc-annotations</artifactId>
193 <version>1.3</version>
194 </dependency>
Singal, Kapil (ks220y)94a7c372021-06-09 12:14:54 -0400195 <!-- Below is required by com.google.guava : guava : jar : 28.2-jre -->
196 <dependency>
197 <groupId>com.google.guava</groupId>
198 <artifactId>listenablefuture</artifactId>
199 </dependency>
200 <dependency>
201 <groupId>com.google.errorprone</groupId>
202 <artifactId>error_prone_annotations</artifactId>
Michael DÜrre6e995802022-01-19 14:29:29 +0100203 <version>2.5.1</version>
Singal, Kapil (ks220y)94a7c372021-06-09 12:14:54 -0400204 </dependency>
Timoney, Dan (dt5972)661e2da2018-08-10 15:52:20 -0400205 </dependencies>
206
207 <build>
208 <plugins>
209 <plugin>
210 <artifactId>maven-assembly-plugin</artifactId>
211 <version>2.6</version>
212 <executions>
213 <execution>
214 <id>maven-repo-zip</id>
215 <goals>
216 <goal>single</goal>
217 </goals>
218 <phase>package</phase>
219 <configuration>
220 <attach>true</attach>
221 <finalName>stage/dependencies-${project.version}</finalName>
222 <descriptors>
223 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
224 </descriptors>
225 <appendAssemblyId>true</appendAssemblyId>
226 </configuration>
227 </execution>
228 </executions>
229 </plugin>
230 <plugin>
231 <groupId>org.apache.maven.plugins</groupId>
232 <artifactId>maven-dependency-plugin</artifactId>
233 <executions>
234 <execution>
235 <id>copy-dependencies</id>
236 <goals>
237 <goal>copy-dependencies</goal>
238 </goals>
239 <phase>prepare-package</phase>
240 <configuration>
241 <transitive>false</transitive>
242 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
243 <overWriteReleases>false</overWriteReleases>
244 <overWriteSnapshots>true</overWriteSnapshots>
245 <overWriteIfNewer>true</overWriteIfNewer>
246 <useRepositoryLayout>true</useRepositoryLayout>
247 <addParentPoms>false</addParentPoms>
248 <copyPom>false</copyPom>
249 <excludeGroupIds>org.onap.ccsdk.sli.core,org.opendaylight</excludeGroupIds>
250 <scope>provided</scope>
251 </configuration>
252 </execution>
253 </executions>
254 </plugin>
255 </plugins>
256 </build>
257</project>