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