Reduce scope from 'compile' to 'test' for 'junit-vintage-engine'
[sdc.git] / catalog-model / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5   <modelVersion>4.0.0</modelVersion>
6
7   <groupId>org.openecomp.sdc.be</groupId>
8   <artifactId>catalog-model</artifactId>
9
10   <parent>
11     <groupId>org.openecomp.sdc</groupId>
12     <artifactId>sdc-main</artifactId>
13     <version>1.7.0-SNAPSHOT</version>
14   </parent>
15
16   <dependencies>
17     <!--JUnit Jupiter Engine to depend on the JUnit5 engine and JUnit 5 API -->
18     <dependency>
19       <groupId>org.junit.jupiter</groupId>
20       <artifactId>junit-jupiter-engine</artifactId>
21       <version>${junitJupiter.version}</version>
22       <scope>test</scope>
23     </dependency>
24     <!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API  -->
25     <dependency>
26       <groupId>org.junit.vintage</groupId>
27       <artifactId>junit-vintage-engine</artifactId>
28       <version>${junitJupiter.version}</version>
29       <scope>test</scope>
30     </dependency>
31
32     <!-- Common of SDC -->
33     <dependency>
34       <groupId>org.openecomp.sdc</groupId>
35       <artifactId>common-app-api</artifactId>
36       <version>${project.version}</version>
37       <scope>provided</scope>
38     </dependency>
39
40     <dependency>
41       <groupId>org.openecomp.sdc.be</groupId>
42       <artifactId>common-be</artifactId>
43       <version>${project.version}</version>
44       <scope>provided</scope>
45     </dependency>
46
47     <dependency>
48       <groupId>ch.qos.logback</groupId>
49       <artifactId>logback-classic</artifactId>
50       <version>${logback.version}</version>
51       <scope>provided</scope>
52     </dependency>
53     <dependency>
54       <groupId>com.google.code.bean-matchers</groupId>
55       <artifactId>bean-matchers</artifactId>
56       <version>${bean-matcher.version}</version>
57       <scope>test</scope>
58     </dependency>
59
60     <dependency>
61       <groupId>ch.qos.logback</groupId>
62       <artifactId>logback-core</artifactId>
63       <version>${logback.version}</version>
64       <scope>provided</scope>
65     </dependency>
66
67     <!-- catalog dao -->
68     <dependency>
69       <groupId>org.openecomp.sdc.be</groupId>
70       <artifactId>catalog-dao</artifactId>
71       <version>${project.version}</version>
72       <scope>provided</scope>
73     </dependency>
74
75     <dependency>
76       <groupId>com.google.guava</groupId>
77       <artifactId>guava</artifactId>
78       <version>${guava.version}</version><!--$NO-MVN-MAN-VER$ -->
79       <scope>provided</scope>
80     </dependency>
81
82     <dependency>
83       <groupId>org.functionaljava</groupId>
84       <artifactId>functionaljava</artifactId>
85       <version>${functionaljava.version}</version>
86       <scope>provided</scope>
87     </dependency>
88
89     <!-- spring -->
90
91     <dependency>
92       <groupId>org.springframework</groupId>
93       <artifactId>spring-core</artifactId>
94       <version>${spring.version}</version>
95       <scope>provided</scope>
96     </dependency>
97
98     <dependency>
99       <groupId>org.springframework</groupId>
100       <artifactId>spring-beans</artifactId>
101       <version>${spring.version}</version>
102       <scope>provided</scope>
103     </dependency>
104
105     <dependency>
106       <groupId>org.springframework</groupId>
107       <artifactId>spring-context</artifactId>
108       <version>${spring.version}</version>
109       <scope>provided</scope>
110     </dependency>
111
112     <dependency>
113       <groupId>javax.validation</groupId>
114       <artifactId>validation-api</artifactId>
115       <version>1.1.0.Final</version>
116     </dependency>
117
118     <dependency>
119       <groupId>org.hibernate</groupId>
120       <artifactId>hibernate-validator</artifactId>
121       <version>5.3.6.Final</version>
122     </dependency>
123
124     <!-- Gson -->
125     <dependency>
126       <groupId>com.google.code.gson</groupId>
127       <artifactId>gson</artifactId>
128       <version>${gson.version}</version>
129       <scope>provided</scope>
130     </dependency>
131
132     <dependency>
133       <groupId>org.janusgraph</groupId>
134       <artifactId>janusgraph-core</artifactId>
135       <version>${janusgraph.version}</version>
136       <scope>provided</scope>
137       <exclusions>
138         <exclusion>
139           <groupId>org.json</groupId>
140           <artifactId>json</artifactId>
141         </exclusion>
142         <exclusion>
143           <artifactId>slf4j-log4j12</artifactId>
144           <groupId>org.slf4j</groupId>
145         </exclusion>
146         <exclusion>
147           <artifactId>commons-collections</artifactId>
148           <groupId>commons-collections</groupId>
149         </exclusion>
150         <exclusion>
151           <artifactId>groovy</artifactId>
152           <groupId>org.codehaus.groovy</groupId>
153         </exclusion>
154         <exclusion>
155           <groupId>org.apache.thrift</groupId>
156           <artifactId>libthrift</artifactId>
157         </exclusion>
158       </exclusions>
159     </dependency>
160
161     <dependency>
162       <groupId>org.janusgraph</groupId>
163       <artifactId>janusgraph-cassandra</artifactId>
164       <version>${janusgraph.version}</version>
165       <scope>provided</scope>
166       <exclusions>
167         <exclusion>
168           <artifactId>slf4j-log4j12</artifactId>
169           <groupId>org.slf4j</groupId>
170         </exclusion>
171       </exclusions>
172     </dependency>
173
174     <dependency>
175       <groupId>org.apache.commons</groupId>
176       <artifactId>commons-lang3</artifactId>
177       <version>${lang3.version}</version>
178       <scope>provided</scope>
179     </dependency>
180
181     <!-- http client -->
182     <dependency>
183       <groupId>org.apache.httpcomponents</groupId>
184       <artifactId>httpclient</artifactId>
185       <version>${httpclient.version}</version>
186       <scope>provided</scope>
187     </dependency>
188
189     <dependency>
190       <groupId>org.apache.httpcomponents</groupId>
191       <artifactId>httpcore</artifactId>
192       <version>${httpcore.version}</version>
193       <scope>provided</scope>
194     </dependency>
195
196     <!-- CASSANDRA -->
197     <dependency>
198       <groupId>com.datastax.cassandra</groupId>
199       <artifactId>cassandra-driver-core</artifactId>
200       <version>${cassandra.driver.version}</version>
201       <scope>provided</scope>
202     </dependency>
203     <dependency>
204       <groupId>com.datastax.cassandra</groupId>
205       <artifactId>cassandra-driver-mapping</artifactId>
206       <version>${cassandra.driver.version}</version>
207       <scope>provided</scope>
208     </dependency>
209     <!-- CASSANDRA END -->
210
211     <dependency>
212       <groupId>org.junit.jupiter</groupId>
213       <artifactId>junit-jupiter</artifactId>
214       <version>${junitJupiter.version}</version>
215       <scope>test</scope>
216     </dependency>
217
218     <dependency>
219       <groupId>org.mockito</groupId>
220       <artifactId>mockito-junit-jupiter</artifactId>
221       <version>${mockitoJupiter.version}</version>
222       <scope>test</scope>
223     </dependency>
224
225     <dependency>
226       <groupId>org.mockito</groupId>
227       <artifactId>mockito-core</artifactId>
228       <scope>test</scope>
229     </dependency>
230
231     <dependency>
232       <groupId>org.jmockit</groupId>
233       <artifactId>jmockit</artifactId>
234       <scope>test</scope>
235     </dependency>
236
237     <dependency>
238       <groupId>org.assertj</groupId>
239       <artifactId>assertj-core</artifactId>
240       <scope>test</scope>
241     </dependency>
242
243     <dependency>
244       <groupId>org.springframework</groupId>
245       <artifactId>spring-test</artifactId>
246       <version>${spring.version}</version>
247       <scope>test</scope>
248     </dependency>
249
250     <dependency>
251       <groupId>org.aspectj</groupId>
252       <artifactId>aspectjrt</artifactId>
253       <version>${aspectj.version}</version>
254       <scope>test</scope>
255     </dependency>
256
257     <dependency>
258       <groupId>org.aspectj</groupId>
259       <artifactId>aspectjweaver</artifactId>
260       <version>${aspectj.version}</version>
261       <scope>test</scope>
262     </dependency>
263
264     <dependency>
265       <groupId>org.springframework</groupId>
266       <artifactId>spring-web</artifactId>
267       <version>${spring.version}</version>
268       <scope>test</scope>
269     </dependency>
270
271     <dependency>
272       <groupId>org.springframework</groupId>
273       <artifactId>spring-tx</artifactId>
274       <scope>test</scope>
275       <version>4.0.7.RELEASE</version>
276     </dependency>
277
278     <dependency>
279       <groupId>org.apache.commons</groupId>
280       <artifactId>commons-jci-core</artifactId>
281       <version>${commons-jci-core.version}</version>
282       <scope>test</scope>
283     </dependency>
284     <dependency>
285       <groupId>org.powermock</groupId>
286       <artifactId>powermock-module-junit4</artifactId>
287       <version>${powermock.version}</version>
288       <scope>test</scope>
289     </dependency>
290     <dependency>
291       <groupId>org.powermock</groupId>
292       <artifactId>powermock-api-mockito-common</artifactId>
293       <version>1.7.4</version>
294       <scope>test</scope>
295     </dependency>
296
297     <dependency>
298       <groupId>org.codehaus.groovy</groupId>
299       <artifactId>groovy</artifactId>
300     </dependency>
301
302     <dependency>
303       <groupId>io.netty</groupId>
304       <artifactId>netty-all</artifactId>
305     </dependency>
306     <dependency>
307       <groupId>org.apache.commons</groupId>
308       <artifactId>commons-collections4</artifactId>
309       <version>${commons.collections.version}</version>
310     </dependency>
311
312     <dependency>
313       <groupId>io.netty</groupId>
314       <artifactId>netty-handler</artifactId>
315     </dependency>
316     <dependency>
317       <groupId>org.projectlombok</groupId>
318       <artifactId>lombok</artifactId>
319       <version>${lombok.version}</version>
320     </dependency>
321     <dependency>
322       <groupId>joda-time</groupId>
323       <artifactId>joda-time</artifactId>
324       <version>${joda.time.version}</version>
325     </dependency>
326                 <dependency>
327                         <groupId>org.openecomp.sdc.core</groupId>
328                         <artifactId>openecomp-tosca-lib</artifactId>
329                         <version>${project.version}</version>
330                 </dependency>
331
332   </dependencies>
333   <build>
334     <plugins>
335       <plugin>
336         <groupId>org.apache.maven.plugins</groupId>
337         <artifactId>maven-deploy-plugin</artifactId>
338         <configuration>
339           <skip>true</skip>
340         </configuration>
341       </plugin>
342       <plugin>
343         <groupId>com.github.sylvainlaurent.maven</groupId>
344         <artifactId>yaml-json-validator-maven-plugin</artifactId>
345         <executions>
346           <execution>
347             <id>validate</id>
348             <phase>validate</phase>
349             <goals>
350               <goal>validate</goal>
351             </goals>
352             <configuration>
353               <validationSets>
354                 <validationSet>
355                   <includes>
356                     <include>src/main/resources/**/*.y*ml</include>
357                     <include>src/test/resources/**/*.y*ml</include>
358                   </includes>
359                 </validationSet>
360                 <validationSet>
361                   <includes>
362                     <include>src/main/resources/**/*.json</include>
363                     <include>src/test/resources/**/*.json</include>
364                   </includes>
365                 </validationSet>
366               </validationSets>
367             </configuration>
368           </execution>
369         </executions>
370       </plugin>
371     </plugins>
372   </build>
373 </project>