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