Roll to initial Honolulu snapshot
[ccsdk/distribution.git] / dependencies / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
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">
3     <modelVersion>4.0.0</modelVersion>
4
5     <parent>
6         <groupId>org.onap.ccsdk.parent</groupId>
7         <artifactId>odlparent-lite</artifactId>
8         <version>2.1.0-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.ccsdk.distribution</groupId>
13     <artifactId>dependencies</artifactId>
14     <version>1.1.0-SNAPSHOT</version>
15     <packaging>pom</packaging>
16
17     <name>ccsdk-distribution:: dependencies</name>
18
19     <properties>
20         <include.transitive.dependencies>false</include.transitive.dependencies>
21     </properties>
22
23     <dependencies>
24         <dependency>
25             <groupId>ch.qos.logback</groupId>
26             <artifactId>logback-classic</artifactId>
27             <version>${logback.version}</version>
28         </dependency>
29         <dependency>
30             <groupId>ch.qos.logback</groupId>
31             <artifactId>logback-core</artifactId>
32             <version>${logback.version}</version>
33         </dependency>
34         <dependency>
35             <groupId>com.att.eelf</groupId>
36             <artifactId>eelf-core</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>com.fasterxml.jackson.dataformat</groupId>
40             <artifactId>jackson-dataformat-xml</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>com.fasterxml.jackson.dataformat</groupId>
44             <artifactId>jackson-dataformat-yaml</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>com.fasterxml.jackson.module</groupId>
48             <artifactId>jackson-module-jsonSchema</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>com.google.code.findbugs</groupId>
52             <artifactId>annotations</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>com.jayway.jsonpath</groupId>
56             <artifactId>json-path</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>javax</groupId>
60             <artifactId>javaee-api</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.apache.commons</groupId>
64             <artifactId>commons-text</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.apache.httpcomponents</groupId>
68             <artifactId>httpclient</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.apache.httpcomponents</groupId>
72             <artifactId>httpcore</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.apache.tomcat</groupId>
76             <artifactId>tomcat-jdbc</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.apache.velocity</groupId>
80             <artifactId>velocity</artifactId>
81             <version>1.7</version>
82         </dependency>
83         <dependency>
84             <groupId>org.apache.velocity</groupId>
85             <artifactId>velocity-engine-core</artifactId>
86             <version>2.0</version>
87         </dependency>
88         <dependency>
89             <groupId>org.codehaus.jettison</groupId>
90             <artifactId>jettison</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.glassfish.jersey.media</groupId>
94             <artifactId>jersey-media-multipart</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.glassfish.jersey.media</groupId>
98             <artifactId>jersey-media-sse</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>org.glassfish.jersey.security</groupId>
102             <artifactId>oauth1-signature</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.glassfish.jersey.security</groupId>
106             <artifactId>oauth1-client</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>org.mariadb.jdbc</groupId>
110             <artifactId>mariadb-java-client</artifactId>
111             <type>jar</type>
112         </dependency>
113         <dependency>
114             <groupId>org.onap.logging-analytics</groupId>
115             <artifactId>logging-filter-base</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>org.slf4j</groupId>
119             <artifactId>jcl-over-slf4j</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>org.springframework</groupId>
123             <artifactId>spring-beans</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>org.springframework</groupId>
127             <artifactId>spring-context</artifactId>
128         </dependency>
129         <dependency>
130             <groupId>org.springframework</groupId>
131             <artifactId>spring-jdbc</artifactId>
132         </dependency>
133         <dependency>
134             <groupId>org.springframework</groupId>
135             <artifactId>spring-web</artifactId>
136         </dependency>
137         <dependency>
138             <groupId>org.apache.servicemix.specs</groupId>
139             <artifactId>org.apache.servicemix.specs.jaxws-api-2.3</artifactId>
140             <version>2.3_1</version>
141         </dependency>
142     </dependencies>
143
144     <build>
145         <plugins>
146             <plugin>
147                 <artifactId>maven-assembly-plugin</artifactId>
148                 <version>2.6</version>
149                 <executions>
150                     <execution>
151                         <id>maven-repo-zip</id>
152                         <goals>
153                             <goal>single</goal>
154                         </goals>
155                         <phase>package</phase>
156                         <configuration>
157                             <attach>true</attach>
158                             <finalName>stage/dependencies-${project.version}</finalName>
159                             <descriptors>
160                                 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
161                             </descriptors>
162                             <appendAssemblyId>true</appendAssemblyId>
163                         </configuration>
164                     </execution>
165                 </executions>
166             </plugin>
167             <plugin>
168                 <groupId>org.apache.maven.plugins</groupId>
169                 <artifactId>maven-dependency-plugin</artifactId>
170                 <executions>
171                     <execution>
172                         <id>copy-dependencies</id>
173                         <goals>
174                             <goal>copy-dependencies</goal>
175                         </goals>
176                         <phase>prepare-package</phase>
177                         <configuration>
178                             <transitive>false</transitive>
179                             <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
180                             <overWriteReleases>false</overWriteReleases>
181                             <overWriteSnapshots>true</overWriteSnapshots>
182                             <overWriteIfNewer>true</overWriteIfNewer>
183                             <useRepositoryLayout>true</useRepositoryLayout>
184                             <addParentPoms>false</addParentPoms>
185                             <copyPom>false</copyPom>
186                             <excludeGroupIds>org.onap.ccsdk.sli.core,org.opendaylight</excludeGroupIds>
187                             <scope>provided</scope>
188                         </configuration>
189                     </execution>
190                 </executions>
191             </plugin>
192         </plugins>
193     </build>
194 </project>