Update version to 1.13.6-SNAPSHOT
[sdc.git] / common-be-tests-utils / 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     <modelVersion>4.0.0</modelVersion>
5
6     <groupId>org.openecomp.sdc.be</groupId>
7     <artifactId>common-be-tests-utils</artifactId>
8
9     <parent>
10         <groupId>org.openecomp.sdc</groupId>
11         <artifactId>sdc-main</artifactId>
12         <version>1.13.6-SNAPSHOT</version>
13     </parent>
14
15     <dependencies>
16
17         <dependency>
18             <groupId>com.fasterxml.jackson.core</groupId>
19             <artifactId>jackson-core</artifactId>
20             <version>${jackson.version}</version>
21         </dependency>
22         <dependency>
23             <groupId>io.minio</groupId>
24             <artifactId>minio</artifactId>
25             <version>${minio.version}</version>
26             <exclusions>
27                 <exclusion>
28                     <groupId>com.squareup.okhttp3</groupId>
29                     <artifactId>okhttp</artifactId>
30                 </exclusion>
31                 <exclusion>
32                     <groupId>com.fasterxml.jackson.core</groupId>
33                     <artifactId>jackson-annotations</artifactId>
34                 </exclusion>
35                 <exclusion>
36                     <groupId>org.bouncycastle</groupId>
37                     <artifactId>bcprov-jdk15on</artifactId>
38                 </exclusion>
39             </exclusions>
40         </dependency>
41         <dependency>
42             <groupId>com.squareup.okhttp3</groupId>
43             <artifactId>okhttp</artifactId>
44             <version>${okhttp.version}</version>
45         </dependency>
46
47         <!-- Common of SD&C -->
48         <dependency>
49             <groupId>org.eclipse.jetty</groupId>
50             <artifactId>jetty-server</artifactId>
51             <version>${jetty.version}</version>
52             <scope>compile</scope>
53             <exclusions>
54                 <exclusion>
55                     <groupId>org.eclipse.jetty</groupId>
56                     <artifactId>jetty-http</artifactId>
57                 </exclusion>
58                 <exclusion>
59                     <groupId>javax.servlet</groupId>
60                     <artifactId>javax.servlet-api</artifactId>
61                 </exclusion>
62             </exclusions>
63         </dependency>
64         <dependency>
65             <groupId>org.eclipse.jetty</groupId>
66             <artifactId>jetty-servlet</artifactId>
67             <version>${jetty.version}</version>
68             <scope>compile</scope>
69             <exclusions>
70                 <exclusion>
71                     <groupId>org.eclipse.jetty</groupId>
72                     <artifactId>jetty-security</artifactId>
73                 </exclusion>
74             </exclusions>
75         </dependency>
76         <dependency>
77             <groupId>org.openecomp.sdc</groupId>
78             <artifactId>common-app-api</artifactId>
79             <version>${project.version}</version>
80             <exclusions>
81                 <exclusion>
82                     <groupId>com.fasterxml.jackson.core</groupId>
83                     <artifactId>jackson-core</artifactId>
84                 </exclusion>
85                 <exclusion>
86                     <groupId>commons-codec</groupId>
87                     <artifactId>commons-codec</artifactId>
88                 </exclusion>
89                 <exclusion>
90                     <groupId>org.apache.httpcomponents</groupId>
91                     <artifactId>httpcore</artifactId>
92                 </exclusion>
93                 <exclusion>
94                     <groupId>org.functionaljava</groupId>
95                     <artifactId>functionaljava</artifactId>
96                 </exclusion>
97             </exclusions>
98         </dependency>
99
100         <dependency>
101             <groupId>org.apache.commons</groupId>
102             <artifactId>commons-lang3</artifactId>
103             <version>${lang3.version}</version>
104             <scope>provided</scope>
105         </dependency>
106
107         <dependency>
108             <groupId>ch.qos.logback</groupId>
109             <artifactId>logback-classic</artifactId>
110             <version>${logback.version}</version>
111             <scope>provided</scope>
112         </dependency>
113
114         <dependency>
115             <groupId>com.google.guava</groupId>
116             <artifactId>guava</artifactId>
117             <version>${guava.version}</version>
118             <scope>provided</scope>
119         </dependency>
120
121         <dependency>
122             <groupId>com.fasterxml.jackson.core</groupId>
123             <artifactId>jackson-databind</artifactId>
124             <version>${jackson.version}</version>
125             <scope>provided</scope>
126             <exclusions>
127                 <exclusion>
128                     <groupId>com.fasterxml.jackson.core</groupId>
129                     <artifactId>jackson-core</artifactId>
130                 </exclusion>
131             </exclusions>
132         </dependency>
133
134         <dependency>
135             <groupId>org.bouncycastle</groupId>
136             <artifactId>bcpkix-lts8on</artifactId>
137             <version>${bouncycastle.version}</version>
138         </dependency>
139
140         <dependency>
141             <groupId>org.hamcrest</groupId>
142             <artifactId>hamcrest</artifactId>
143             <version>${hamcrest.version}</version>
144             <scope>test</scope>
145         </dependency>
146         <dependency>
147             <groupId>org.hamcrest</groupId>
148             <artifactId>hamcrest-library</artifactId>
149             <version>${hamcrest.version}</version>
150             <scope>test</scope>
151         </dependency>
152         <dependency>
153             <groupId>org.junit.jupiter</groupId>
154             <artifactId>junit-jupiter</artifactId>
155             <version>${junitJupiter.version}</version>
156             <scope>test</scope>
157         </dependency>
158         <dependency>
159             <groupId>org.mockito</groupId>
160             <artifactId>mockito-junit-jupiter</artifactId>
161             <version>${mockitoJupiter.version}</version>
162             <scope>test</scope>
163         </dependency>
164         <dependency>
165             <groupId>org.onap.sdc.common</groupId>
166             <artifactId>onap-tosca-datatype</artifactId>
167             <version>${tosca.datatype.version}</version>
168             <exclusions>
169                 <exclusion>
170                     <groupId>com.fasterxml.jackson.core</groupId>
171                     <artifactId>jackson-core</artifactId>
172                 </exclusion>
173             </exclusions>
174         </dependency>
175         <dependency>
176             <groupId>org.projectlombok</groupId>
177             <artifactId>lombok</artifactId>
178             <version>${lombok.version}</version>
179         </dependency>
180         <dependency>
181             <groupId>com.google.code.bean-matchers</groupId>
182             <artifactId>bean-matchers</artifactId>
183             <version>${bean-matchers.version}</version>
184             <scope>test</scope>
185         </dependency>
186
187         <!-- Togglz core module (mandatory) -->
188         <dependency>
189             <groupId>org.togglz</groupId>
190             <artifactId>togglz-core</artifactId>
191             <version>${togglz.version}</version>
192         </dependency>
193
194         <!-- Togglz for Servlet environments (mandatory for webapps) -->
195         <dependency>
196             <groupId>org.togglz</groupId>
197             <artifactId>togglz-servlet</artifactId>
198             <version>${togglz.version}</version>
199         </dependency>
200
201         <!-- Togglz Admin Console -->
202         <dependency>
203             <groupId>org.togglz</groupId>
204             <artifactId>togglz-console</artifactId>
205             <version>${togglz.version}</version>
206         </dependency>
207
208         <!-- Togglz for testing -->
209         <dependency>
210             <groupId>org.togglz</groupId>
211             <artifactId>togglz-testing</artifactId>
212             <version>${togglz.version}</version>
213             <scope>test</scope>
214         </dependency>
215         <dependency>
216             <groupId>org.springframework</groupId>
217             <artifactId>spring-context</artifactId>
218             <version>${spring.version}</version>
219             <scope>compile</scope>
220             <exclusions>
221                 <exclusion>
222                     <groupId>org.springframework</groupId>
223                     <artifactId>spring-expression</artifactId>
224                 </exclusion>
225                 <exclusion>
226                     <groupId>org.springframework</groupId>
227                     <artifactId>spring-core</artifactId>
228                 </exclusion>
229             </exclusions>
230         </dependency>
231         <dependency>
232             <groupId>org.springframework</groupId>
233             <artifactId>spring-core</artifactId>
234             <version>${spring.version}</version>
235         </dependency>
236         <dependency>
237             <groupId>org.apache.cxf</groupId>
238             <artifactId>cxf-rt-frontend-jaxrs</artifactId>
239             <version>${cxf.version}</version>
240             <exclusions>
241                 <exclusion>
242                     <groupId>org.jboss.spec.javax.rmi</groupId>
243                     <artifactId>jboss-rmi-api_1.0_spec</artifactId>
244                 </exclusion>
245             </exclusions>
246         </dependency>
247         <dependency>
248             <groupId>org.openecomp.sdc.core</groupId>
249             <artifactId>openecomp-common-lib</artifactId>
250             <version>${project.version}</version>
251         </dependency>
252     </dependencies>
253
254     <build>
255         <plugins>
256             <plugin>
257                 <groupId>org.apache.maven.plugins</groupId>
258                 <artifactId>maven-jar-plugin</artifactId>
259                 <executions>
260                     <execution>
261                         <id>default-jar</id>
262                         <phase>package</phase>
263                         <goals>
264                             <goal>jar</goal>
265                         </goals>
266                     </execution>
267                 </executions>
268             </plugin>
269             <plugin>
270                 <groupId>com.github.sylvainlaurent.maven</groupId>
271                 <artifactId>yaml-json-validator-maven-plugin</artifactId>
272                 <executions>
273                     <execution>
274                         <id>validate</id>
275                         <phase>validate</phase>
276                         <goals>
277                             <goal>validate</goal>
278                         </goals>
279                         <configuration>
280                             <validationSets>
281                                 <validationSet>
282                                     <includes>
283                                         <include>src/main/resources/**/*.y*ml</include>
284                                         <include>src/test/resources/**/*.y*ml</include>
285                                     </includes>
286                                 </validationSet>
287                                 <validationSet>
288                                     <includes>
289                                         <include>src/main/resources/**/*.json</include>
290                                         <include>src/test/resources/**/*.json</include>
291                                     </includes>
292                                 </validationSet>
293                             </validationSets>
294                             <skip>${skipYamlJsonValidator}</skip>
295                         </configuration>
296                     </execution>
297                 </executions>
298             </plugin>
299         </plugins>
300     </build>
301
302 </project>