cf8ca1abebc6b022724e7e985e26f40bf121d8df
[sdc.git] / onboarding / pom.xml
1 <!--
2   ~ Copyright © 2016-2018 European Support Limited
3   ~
4   ~ Licensed under the Apache License, Version 2.0 (the "License");
5   ~ you may not use this file except in compliance with the License.
6   ~ You may obtain a copy of the License at
7   ~
8   ~      http://www.apache.org/licenses/LICENSE-2.0
9   ~
10   ~ Unless required by applicable law or agreed to in writing, software
11   ~ distributed under the License is distributed on an "AS IS" BASIS,
12   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   ~ See the License for the specific language governing permissions and
14   ~ limitations under the License.
15   -->
16
17 <project xmlns="http://maven.apache.org/POM/4.0.0"
18   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20
21   <modelVersion>4.0.0</modelVersion>
22
23   <artifactId>sdc-onboarding</artifactId>
24   <packaging>pom</packaging>
25
26   <parent>
27     <groupId>org.openecomp.sdc</groupId>
28     <artifactId>sdc-main</artifactId>
29     <version>1.10.0-SNAPSHOT</version>
30   </parent>
31
32   <modules>
33     <module>../common</module>
34     <module>../openecomp-be</module>
35     <module>../openecomp-ui</module>
36   </modules>
37
38   <properties>
39
40     <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
41     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42
43     <!-- Maven plugin versions -->
44     <mvn.assembly.version>2.1</mvn.assembly.version>
45     <mvn.clean.version>2.5</mvn.clean.version>
46     <mvn.resource.version>3.1.0</mvn.resource.version>
47     <mvn.deploy.version>2.4</mvn.deploy.version>
48     <mvn.install.version>2.4</mvn.install.version>
49     <mvn.jar.version>2.4</mvn.jar.version>
50     <mvn.war.version>2.1.1</mvn.war.version>
51
52     <!-- Onboarding 3rd party versions -->
53     <aspectjrt.version>${aspectj.version}</aspectjrt.version>
54     <bsh.version>2.0b6</bsh.version>
55     <cglib.nodep.version>3.2.4</cglib.nodep.version>
56     <classmate.version>1.3.3</classmate.version>
57     <commons.codec.version>${commons-codec}</commons.codec.version>
58     <commons.digester.version>2.1</commons.digester.version>
59     <commons.lang3.version>${lang3.version}</commons.lang3.version>
60     <datastax.cassandra.version>3.8.0</datastax.cassandra.version>
61     <groovy.minimal.version>1.5.8</groovy.minimal.version>
62     <http.client.version>${httpclient.version}</http.client.version>
63     <http.core.version>4.4.1</http.core.version>
64     <httpasyncclient.version>4.1.2</httpasyncclient.version>
65     <com.sun.xml.version>2.3.3</com.sun.xml.version>
66     <javax.el.version>2.2.6</javax.el.version>
67     <javax.el-api.version>3.0.1-b06</javax.el-api.version>
68     <javax.inject.version>1</javax.inject.version>
69     <jackson.annotations.version>${jackson.version}</jackson.annotations.version>
70     <jackson.dataformat.version>${jackson.version}</jackson.dataformat.version>
71     <jcommander.version>1.58</jcommander.version>
72     <jersey.core.version>1.19.1</jersey.core.version>
73     <jersey.multipart.version>1.18.1</jersey.multipart.version>
74     <org.everit.json.schema.version>1.5.1</org.everit.json.schema.version>
75     <slf4j.version>${slf4j-api.version}</slf4j.version>
76     <spring.framework.version>${spring.version}</spring.framework.version>
77     <swagger.version>${swagger-core-mvn-plugin.version}</swagger.version>
78     <woodstox.version>4.4.1</woodstox.version>
79     <zusammen.version>1.0.2</zusammen.version>
80     <zusammen-state-store.version>1.0.2</zusammen-state-store.version>
81     <zusammen-collaboration-store.version>1.0.2</zusammen-collaboration-store.version>
82     <zusammen-index-store.version>1.0.0</zusammen-index-store.version>
83     <zusammen-common-utilities.version>1.0.3</zusammen-common-utilities.version>
84     <build.tools.version>${project.version}</build.tools.version>
85   </properties>
86
87   <dependencyManagement>
88     <dependencies>
89       <dependency>
90         <groupId>org.projectlombok</groupId>
91         <artifactId>lombok</artifactId>
92         <version>${lombok.version}</version>
93         <scope>provided</scope>
94       </dependency>
95       <dependency>
96         <groupId>org.springframework</groupId>
97         <artifactId>spring-expression</artifactId>
98         <version>${spring.framework.version}</version>
99       </dependency>
100       <dependency>
101         <groupId>org.springframework</groupId>
102         <artifactId>spring-context</artifactId>
103         <version>${spring.framework.version}</version>
104         <exclusions>
105           <exclusion>
106             <groupId>org.springframework</groupId>
107             <artifactId>spring-expression</artifactId>
108           </exclusion>
109           <exclusion>
110             <groupId>org.springframework</groupId>
111             <artifactId>spring-core</artifactId>
112           </exclusion>
113         </exclusions>
114       </dependency>
115       <dependency>
116         <groupId>org.springframework</groupId>
117         <artifactId>spring-webmvc</artifactId>
118         <version>${spring.framework.version}</version>
119         <exclusions>
120           <exclusion>
121             <groupId>org.springframework</groupId>
122             <artifactId>spring-expression</artifactId>
123           </exclusion>
124           <exclusion>
125             <groupId>org.springframework</groupId>
126             <artifactId>spring-core</artifactId>
127           </exclusion>
128           <exclusion>
129             <groupId>org.springframework</groupId>
130             <artifactId>spring-web</artifactId>
131           </exclusion>
132         </exclusions>
133       </dependency>
134       <dependency>
135         <groupId>org.apache.commons</groupId>
136         <artifactId>commons-text</artifactId>
137         <version>${apache-commons-text.version}</version>
138       </dependency>
139       <dependency>
140         <groupId>com.beust</groupId>
141         <artifactId>jcommander</artifactId>
142         <version>${jcommander.version}</version>
143       </dependency>
144       <dependency>
145         <groupId>org.apache.httpcomponents</groupId>
146         <artifactId>httpasyncclient</artifactId>
147         <version>${httpasyncclient.version}</version>
148       </dependency>
149       <dependency>
150         <groupId>com.sun.xml.bind</groupId>
151         <artifactId>jaxb-impl</artifactId>
152         <version>${com.sun.xml.version}</version>
153       </dependency>
154       <dependency>
155         <groupId>org.beanshell</groupId>
156         <artifactId>bsh</artifactId>
157         <version>${bsh.version}</version>
158       </dependency>
159       <dependency>
160         <groupId>commons-digester</groupId>
161         <artifactId>commons-digester</artifactId>
162         <version>${commons.digester.version}</version>
163       </dependency>
164       <dependency>
165         <groupId>com.fasterxml</groupId>
166         <artifactId>classmate</artifactId>
167         <version>${classmate.version}</version>
168       </dependency>
169       <dependency>
170         <groupId>org.slf4j</groupId>
171         <artifactId>slf4j-api</artifactId>
172         <version>${slf4j.version}</version>
173       </dependency>
174       <dependency>
175         <groupId>org.codehaus.groovy</groupId>
176         <artifactId>groovy-all-minimal</artifactId>
177         <version>${groovy.minimal.version}</version>
178       </dependency>
179       <dependency>
180         <groupId>org.codehaus.janino</groupId>
181         <artifactId>janino</artifactId>
182         <version>${janino.version}</version>
183         <scope>provided</scope>
184       </dependency>
185       <dependency>
186         <groupId>com.fasterxml.jackson.core</groupId>
187         <artifactId>jackson-annotations</artifactId>
188         <version>${jackson.annotations.version}</version>
189       </dependency>
190       <dependency>
191         <groupId>com.fasterxml.jackson.core</groupId>
192         <artifactId>jackson-core</artifactId>
193         <version>${jackson.version}</version>
194       </dependency>
195       <dependency>
196         <groupId>org.aspectj</groupId>
197         <artifactId>aspectjrt</artifactId>
198         <version>${aspectjrt.version}</version>
199       </dependency>
200       <dependency>
201         <groupId>javax.servlet</groupId>
202         <artifactId>javax.servlet-api</artifactId>
203         <version>${servlet-api.version}</version>
204         <scope>provided</scope>
205       </dependency>
206       <dependency>
207         <groupId>commons-beanutils</groupId>
208         <artifactId>commons-beanutils</artifactId>
209         <version>${commons-beanutils}</version>
210       </dependency>
211       <dependency>
212         <groupId>com.google.code.findbugs</groupId>
213         <artifactId>annotations</artifactId>
214         <version>3.0.1u2</version>
215       </dependency>
216       <dependency>
217         <groupId>cglib</groupId>
218         <artifactId>cglib-nodep</artifactId>
219         <version>${cglib.nodep.version}</version>
220       </dependency>
221       <dependency>
222         <groupId>ch.qos.logback</groupId>
223         <artifactId>logback-classic</artifactId>
224         <version>${logback.version}</version>
225       </dependency>
226       <dependency>
227         <groupId>ch.qos.logback</groupId>
228         <artifactId>logback-core</artifactId>
229         <version>${logback.version}</version>
230       </dependency>
231       <dependency>
232         <groupId>com.fasterxml.jackson.core</groupId>
233         <artifactId>jackson-databind</artifactId>
234         <version>${jackson.version}</version>
235         <exclusions>
236           <exclusion>
237             <groupId>com.fasterxml.jackson.core</groupId>
238             <artifactId>jackson-core</artifactId>
239           </exclusion>
240         </exclusions>
241       </dependency>
242       <dependency>
243         <groupId>com.fasterxml.jackson.dataformat</groupId>
244         <artifactId>jackson-dataformat-yaml</artifactId>
245         <version>${jackson.version}</version>
246       </dependency>
247       <dependency>
248         <groupId>commons-codec</groupId>
249         <artifactId>commons-codec</artifactId>
250         <version>${commons.codec.version}</version>
251       </dependency>
252       <dependency>
253         <groupId>com.datastax.cassandra</groupId>
254         <artifactId>cassandra-driver-core</artifactId>
255         <version>${datastax.cassandra.version}</version>
256       </dependency>
257       <dependency>
258         <groupId>com.datastax.cassandra</groupId>
259         <artifactId>cassandra-driver-mapping</artifactId>
260         <version>${datastax.cassandra.version}</version>
261       </dependency>
262       <dependency>
263         <groupId>javax.ws.rs</groupId>
264         <artifactId>javax.ws.rs-api</artifactId>
265         <version>${ws.rs.version}</version>
266       </dependency>
267       <dependency>
268         <groupId>com.google.code.gson</groupId>
269         <artifactId>gson</artifactId>
270         <version>${gson.version}</version>
271       </dependency>
272       <dependency>
273         <groupId>commons-io</groupId>
274         <artifactId>commons-io</artifactId>
275         <version>${commons.io.version}</version>
276       </dependency>
277       <dependency>
278         <groupId>org.apache.commons</groupId>
279         <artifactId>commons-lang3</artifactId>
280         <version>${commons.lang3.version}</version>
281       </dependency>
282       <dependency>
283         <groupId>io.swagger.core.v3</groupId>
284         <artifactId>swagger-annotations</artifactId>
285         <version>${swagger.version}</version>
286       </dependency>
287       <dependency>
288         <groupId>com.github.tomakehurst</groupId>
289         <artifactId>wiremock</artifactId>
290         <version>${wire-mock.version}</version>
291       </dependency>
292     </dependencies>
293   </dependencyManagement>
294
295   <build>
296     <plugins>
297       <plugin>
298         <groupId>org.apache.maven.plugins</groupId>
299         <artifactId>maven-jar-plugin</artifactId>
300         <version>${mvn.jar.version}</version>
301       </plugin>
302       <plugin>
303         <groupId>org.apache.maven.plugins</groupId>
304         <artifactId>maven-clean-plugin</artifactId>
305         <version>${mvn.clean.version}</version>
306       </plugin>
307       <plugin>
308         <groupId>org.apache.maven.plugins</groupId>
309         <artifactId>maven-surefire-plugin</artifactId>
310         <configuration>
311           <printSummary>false</printSummary>
312           <additionalClasspathElements>
313             <additionalClasspathElement>${project.basedir}/src/test/resources
314             </additionalClasspathElement>
315           </additionalClasspathElements>
316           <systemPropertyVariables>
317             <logback.configurationFile>src/test/resources/logback-test.xml
318             </logback.configurationFile>
319             <config.location>${project.basedir}/configuration</config.location>
320           </systemPropertyVariables>
321         </configuration>
322       </plugin>
323       <plugin>
324         <groupId>org.apache.maven.plugins</groupId>
325         <artifactId>maven-install-plugin</artifactId>
326         <version>${mvn.install.version}</version>
327       </plugin>
328       <plugin>
329         <groupId>org.apache.maven.plugins</groupId>
330         <artifactId>maven-resources-plugin</artifactId>
331         <version>${mvn.resource.version}</version>
332       </plugin>
333     </plugins>
334     <testResources>
335       <testResource>
336         <directory>src/test/resources</directory>
337         <excludes>
338           <exclude>**/*</exclude>
339         </excludes>
340       </testResource>
341     </testResources>
342   </build>
343
344 </project>