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