Step version to 1.13.1-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.1-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             </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         <dependency>
121             <groupId>org.functionaljava</groupId>
122             <artifactId>functionaljava</artifactId>
123             <version>${functionaljava.version}</version>
124             <scope>provided</scope>
125         </dependency>
126
127         <dependency>
128             <groupId>com.fasterxml.jackson.core</groupId>
129             <artifactId>jackson-databind</artifactId>
130             <version>${jackson.version}</version>
131             <scope>provided</scope>
132             <exclusions>
133                 <exclusion>
134                     <groupId>com.fasterxml.jackson.core</groupId>
135                     <artifactId>jackson-core</artifactId>
136                 </exclusion>
137             </exclusions>
138         </dependency>
139
140         <dependency>
141             <groupId>org.bouncycastle</groupId>
142             <artifactId>bcpkix-jdk15on</artifactId>
143             <version>${bouncycastle.version}</version>
144             <scope>compile</scope>
145         </dependency>
146
147         <dependency>
148             <groupId>org.hamcrest</groupId>
149             <artifactId>hamcrest</artifactId>
150             <version>${hamcrest.version}</version>
151             <scope>test</scope>
152         </dependency>
153         <dependency>
154             <groupId>org.hamcrest</groupId>
155             <artifactId>hamcrest-library</artifactId>
156             <version>${hamcrest.version}</version>
157             <scope>test</scope>
158         </dependency>
159         <dependency>
160             <groupId>org.junit.jupiter</groupId>
161             <artifactId>junit-jupiter</artifactId>
162             <version>${junitJupiter.version}</version>
163             <scope>test</scope>
164         </dependency>
165         <dependency>
166             <groupId>org.mockito</groupId>
167             <artifactId>mockito-junit-jupiter</artifactId>
168             <version>${mockitoJupiter.version}</version>
169             <scope>test</scope>
170         </dependency>
171         <dependency>
172             <groupId>org.onap.sdc.common</groupId>
173             <artifactId>onap-tosca-datatype</artifactId>
174             <version>${tosca.datatype.version}</version>
175             <exclusions>
176                 <exclusion>
177                     <groupId>com.fasterxml.jackson.core</groupId>
178                     <artifactId>jackson-core</artifactId>
179                 </exclusion>
180             </exclusions>
181         </dependency>
182         <dependency>
183             <groupId>org.projectlombok</groupId>
184             <artifactId>lombok</artifactId>
185             <version>${lombok.version}</version>
186         </dependency>
187         <dependency>
188             <groupId>com.google.code.bean-matchers</groupId>
189             <artifactId>bean-matchers</artifactId>
190             <version>${bean-matchers.version}</version>
191             <scope>test</scope>
192         </dependency>
193
194         <!-- Togglz core module (mandatory) -->
195         <dependency>
196             <groupId>org.togglz</groupId>
197             <artifactId>togglz-core</artifactId>
198             <version>${togglz.version}</version>
199         </dependency>
200
201         <!-- Togglz for Servlet environments (mandatory for webapps) -->
202         <dependency>
203             <groupId>org.togglz</groupId>
204             <artifactId>togglz-servlet</artifactId>
205             <version>${togglz.version}</version>
206         </dependency>
207
208         <!-- Togglz Admin Console -->
209         <dependency>
210             <groupId>org.togglz</groupId>
211             <artifactId>togglz-console</artifactId>
212             <version>${togglz.version}</version>
213         </dependency>
214
215         <!-- Togglz for testing -->
216         <dependency>
217             <groupId>org.togglz</groupId>
218             <artifactId>togglz-testing</artifactId>
219             <version>${togglz.version}</version>
220             <scope>test</scope>
221         </dependency>
222         <dependency>
223             <groupId>org.springframework</groupId>
224             <artifactId>spring-context</artifactId>
225             <version>${spring.version}</version>
226             <scope>compile</scope>
227             <exclusions>
228                 <exclusion>
229                     <groupId>org.springframework</groupId>
230                     <artifactId>spring-expression</artifactId>
231                 </exclusion>
232                 <exclusion>
233                     <groupId>org.springframework</groupId>
234                     <artifactId>spring-core</artifactId>
235                 </exclusion>
236             </exclusions>
237         </dependency>
238         <dependency>
239             <groupId>org.springframework</groupId>
240             <artifactId>spring-core</artifactId>
241             <version>${spring.version}</version>
242         </dependency>
243         <dependency>
244             <groupId>org.apache.cxf</groupId>
245             <artifactId>cxf-rt-frontend-jaxrs</artifactId>
246             <version>${cxf.version}</version>
247             <exclusions>
248                 <exclusion>
249                     <groupId>org.jboss.spec.javax.rmi</groupId>
250                     <artifactId>jboss-rmi-api_1.0_spec</artifactId>
251                 </exclusion>
252             </exclusions>
253         </dependency>
254         <dependency>
255             <groupId>org.openecomp.sdc.core</groupId>
256             <artifactId>openecomp-common-lib</artifactId>
257             <version>${project.version}</version>
258         </dependency>
259         <dependency>
260             <groupId>org.openecomp.sdc.be</groupId>
261             <artifactId>common-be-tests-utils</artifactId>
262             <version>${project.version}</version>
263             <scope>test</scope>
264             <exclusions>
265                 <exclusion>
266                     <groupId>org.eclipse.jetty</groupId>
267                     <artifactId>jetty-server</artifactId>
268                 </exclusion>
269                 <exclusion>
270                     <groupId>org.eclipse.jetty</groupId>
271                     <artifactId>jetty-servlet</artifactId>
272                 </exclusion>
273             </exclusions>
274         </dependency>
275     </dependencies>
276
277     <build>
278         <plugins>
279             <plugin>
280                 <groupId>org.apache.maven.plugins</groupId>
281                 <artifactId>maven-jar-plugin</artifactId>
282                 <executions>
283                     <execution>
284                         <id>default-jar</id>
285                         <phase>package</phase>
286                         <goals>
287                             <goal>jar</goal>
288                         </goals>
289                     </execution>
290                 </executions>
291             </plugin>
292             <plugin>
293                 <groupId>com.github.sylvainlaurent.maven</groupId>
294                 <artifactId>yaml-json-validator-maven-plugin</artifactId>
295                 <executions>
296                     <execution>
297                         <id>validate</id>
298                         <phase>validate</phase>
299                         <goals>
300                             <goal>validate</goal>
301                         </goals>
302                         <configuration>
303                             <validationSets>
304                                 <validationSet>
305                                     <includes>
306                                         <include>src/main/resources/**/*.y*ml</include>
307                                         <include>src/test/resources/**/*.y*ml</include>
308                                     </includes>
309                                 </validationSet>
310                                 <validationSet>
311                                     <includes>
312                                         <include>src/main/resources/**/*.json</include>
313                                         <include>src/test/resources/**/*.json</include>
314                                     </includes>
315                                 </validationSet>
316                             </validationSets>
317                             <skip>${skipYamlJsonValidator}</skip>
318                         </configuration>
319                     </execution>
320                 </executions>
321             </plugin>
322         </plugins>
323     </build>
324
325 </project>