d0b10a342fc3f2f3887fdb86cbfe4e69fb8f5621
[vfc/nfvo/driver/ems.git] / ems / boco / pom.xml
1
2 <!--
3     Copyright (c) 2017, CMCC Technologies Co., Ltd.
4
5     Licensed under the Apache License, Version 2.0 (the "License");
6     you may not use this file except in compliance with the License.
7     You may obtain a copy of the License at
8
9     http://www.apache.org/licenses/LICENSE-2.0
10
11     Unless required by applicable law or agreed to in writing, software
12     distributed under the License is distributed on an "AS IS" BASIS,
13     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14     See the License for the specific language governing permissions and
15     limitations under the License.
16  -->
17 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19   <parent>
20         <groupId>org.onap.vfc.nfvo.driver.ems.ems</groupId>
21         <artifactId>ems-driver-boco-parent</artifactId>
22         <version>1.1.0-SNAPSHOT</version>
23   </parent>
24   
25   <modelVersion>4.0.0</modelVersion>
26   <artifactId>boco-driver</artifactId>
27   <version>1.1.0-SNAPSHOT</version>
28   <packaging>jar</packaging>
29   <name>vfc-nfvo-driver-ems-ems-boco</name>
30   
31
32   <properties>
33     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34     <jersey.version>2.16</jersey.version>
35     <swagger.version>1.5.3</swagger.version>
36   </properties>
37   
38    <build>
39     <!--pluginManagement--> 
40         <plugins>
41            <plugin>
42                 <groupId>org.apache.maven.plugins</groupId>
43                 <artifactId>maven-jar-plugin</artifactId>
44                 <configuration>
45                     <archive>
46                         <manifest>
47                             <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
48                         </manifest>
49                     </archive>
50                 </configuration>
51             </plugin>
52             <plugin>
53                 <groupId>org.apache.maven.plugins</groupId>
54                 <artifactId>maven-shade-plugin</artifactId>
55                 <configuration>
56                     <createDependencyReducedPom>false</createDependencyReducedPom>
57                     <filters>
58                         <filter>
59                             <artifact>*:*</artifact>
60                             <excludes>
61                                 <exclude>META-INF/*.SF</exclude>
62                                 <exclude>META-INF/*.DSA</exclude>
63                                 <exclude>META-INF/*.RSA</exclude>
64                             </excludes>
65                         </filter>
66                     </filters>
67                 </configuration>
68                 <executions>
69                     <execution>
70                         <phase>package</phase>
71                         <goals>
72                             <goal>shade</goal>
73                         </goals>
74                         <configuration>
75                             <transformers>
76                                 <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
77                                 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
78                                     <mainClass>org.onap.vfc.nfvo.emsdriver.EmsDriverApplication</mainClass>
79                                 </transformer>
80                             </transformers>
81                         </configuration>
82                     </execution>
83                 </executions>
84             </plugin>
85             <plugin>
86                 <groupId>org.apache.maven.plugins</groupId>
87                 <artifactId>maven-dependency-plugin</artifactId>
88                 <executions>
89                     <execution>
90                         <id>copy-dependencies</id>
91                         <phase>package</phase>
92                         <goals>
93                             <goal>copy-dependencies</goal>
94                         </goals>
95                         <configuration>
96                             <artifactItems>
97                                 <artifactItem>
98                                     <groupId>io.dropwizard</groupId>
99                                     <artifactId>dropwizard-core</artifactId>
100                                     <overWrite>true</overWrite>
101                                 </artifactItem>
102                             </artifactItems>
103                         </configuration>
104                     </execution>
105                 </executions>
106             </plugin>
107         </plugins>
108        <!--  /pluginManagement--> 
109         
110     </build>
111
112   <dependencies>
113         <dependency>
114                 <groupId>commons-lang</groupId>
115                 <artifactId>commons-lang</artifactId>
116                 <version>2.6</version>
117         </dependency>
118         <dependency>
119                  <groupId>log4j</groupId>
120                  <artifactId>log4j</artifactId>
121                  <version>1.2.17</version>
122         </dependency>
123         <dependency>
124                  <groupId>com.alibaba</groupId>
125                  <artifactId>fastjson</artifactId>
126                  <version>1.2.24</version>
127         </dependency>
128         <dependency>
129                  <groupId>commons-io</groupId>
130                  <artifactId>commons-io</artifactId>
131                  <version>2.5</version>
132         </dependency>
133         <dependency>
134                 <groupId>org.apache.ant</groupId>
135                 <artifactId>ant</artifactId>
136                 <version>1.10.1</version>
137         </dependency>
138         <dependency>
139                 <groupId>jdom</groupId>
140                 <artifactId>jdom</artifactId>
141                 <version>1.1</version>
142         </dependency>
143         <dependency>
144                 <groupId>commons-net</groupId>
145                 <artifactId>commons-net</artifactId>
146                 <version>3.6</version>
147         </dependency>
148                 
149         <dependency>
150                 <groupId>org.springframework</groupId>
151                 <artifactId>spring-context</artifactId>
152                 <version>4.3.6.RELEASE</version>
153         </dependency>
154     <dependency>
155                 <groupId>org.quartz-scheduler</groupId>
156                 <artifactId>quartz</artifactId>
157                 <version>1.7.3</version>
158         </dependency>
159         <dependency>
160            <groupId>io.dropwizard</groupId>
161            <artifactId>dropwizard-core</artifactId>
162            <version>1.2.3</version>
163         </dependency>
164         <dependency>
165         <groupId>io.dropwizard</groupId>
166         <artifactId>dropwizard-assets</artifactId>
167         <version>1.2.3</version>
168     </dependency>
169         <dependency>
170           <groupId>org.apache.httpcomponents</groupId>
171       <artifactId>httpclient</artifactId>
172           <version>4.5.5</version>
173         </dependency>
174           <dependency>
175             <groupId>org.glassfish.jersey.media</groupId>
176             <artifactId>jersey-media-multipart</artifactId>
177             <version>${jersey.version}</version>
178         </dependency>
179
180         <dependency>
181             <groupId>org.glassfish.jersey.containers</groupId>
182             <artifactId>jersey-container-servlet-core</artifactId>
183             <version>${jersey.version}</version>
184         </dependency>
185                 
186                 <dependency>
187                         <groupId>org.glassfish.jersey.containers</groupId>
188                         <artifactId>jersey-container-servlet</artifactId>
189                         <version>2.16</version>
190                 </dependency>
191                 <dependency>
192                         <groupId>org.glassfish.jersey.core</groupId>
193                         <artifactId>jersey-client</artifactId>
194                         <version>2.16</version>
195                 </dependency>
196                 <dependency>
197                         <groupId>org.glassfish.jersey.core</groupId>
198                         <artifactId>jersey-common</artifactId>
199                         <version>2.16</version>
200                 </dependency>
201     <dependency>
202             <groupId>junit</groupId>
203             <artifactId>junit</artifactId>
204             <version>4.12</version>
205             <scope>test</scope>
206         </dependency>
207         <dependency>
208         <groupId>io.swagger</groupId>
209         <artifactId>swagger-jersey2-jaxrs</artifactId>
210         <version>${swagger.version}</version>
211     </dependency>
212      <dependency>
213                     <groupId>evel_javalib2</groupId>
214                     <artifactId>evel_javalib2</artifactId>
215                     <version>0.0.1-SNAPSHOT</version>
216                     <scope>system</scope> 
217                         <systemPath>${basedir}/3rdParty/evel_javalib2-0.0.1-SNAPSHOT.jar</systemPath> 
218         </dependency>
219         <dependency>
220                 <groupId>javax.json</groupId>
221                 <artifactId>javax.json-api</artifactId>
222                 <version>1.1</version>
223         </dependency>
224         <dependency>
225                 <groupId>org.glassfish</groupId>
226                 <artifactId>javax.json</artifactId>
227                 <version>1.0.4</version>
228         </dependency>
229         <dependency>
230                 <groupId>org.slf4j</groupId>
231                 <artifactId>slf4j-log4j12</artifactId>
232                 <version>1.7.5</version>
233         </dependency>
234         <!-- https://mvnrepository.com/artifact/org.mockftpserver/MockFtpServer -->
235         
236         <dependency>
237             <groupId>org.mockftpserver</groupId>
238             <artifactId>MockFtpServer</artifactId>
239             <version>2.4</version>
240             <scope>test</scope>
241         </dependency>
242         <dependency>
243             <groupId>org.mock-server</groupId>
244             <artifactId>mockserver-netty</artifactId>
245             <version>5.3.0</version>
246         </dependency>
247         <dependency>
248             <groupId>org.eclipse.jetty</groupId>
249             <artifactId>jetty-server</artifactId>
250             <version>9.4.8.v20171121</version>
251         </dependency>
252         <dependency>
253             <groupId>commons-collections</groupId>
254             <artifactId>commons-collections</artifactId>
255             <version>3.2.2</version>
256         </dependency>
257         <dependency>
258             <groupId>com.fasterxml.jackson.core</groupId>
259             <artifactId>jackson-databind</artifactId>
260             <version>2.8.11.1</version>
261         </dependency>
262         <dependency>
263             <groupId>io.netty</groupId>
264             <artifactId>netty-handler</artifactId>
265             <version>4.1.22.Final</version>
266         </dependency>
267         <dependency>
268             <groupId>ch.qos.logback</groupId>
269             <artifactId>logback-access</artifactId>
270             <version>1.2.3</version>
271         </dependency>
272         <dependency>
273             <groupId>com.fasterxml.jackson.dataformat</groupId>
274             <artifactId>jackson-dataformat-xml</artifactId>
275             <version>2.9.3</version>
276         </dependency>
277         <dependency>
278             <groupId>org.bouncycastle</groupId>
279             <artifactId>bcprov-jdk15on</artifactId>
280             <version>1.59</version>
281         </dependency>
282         <dependency>
283             <groupId>ch.qos.logback</groupId>
284             <artifactId>logback-classic</artifactId>
285             <version>1.2.3</version>
286             <scope>test</scope>
287         </dependency>
288         <dependency>
289             <groupId>xerces</groupId>
290             <artifactId>xercesImpl</artifactId>
291             <version>2.11.0</version>
292         </dependency>
293         <dependency>
294             <groupId>com.googlecode.libphonenumber</groupId>
295             <artifactId>libphonenumber</artifactId>
296             <version>8.9.1</version>
297         </dependency>
298         <dependency>
299             <groupId>org.eclipse.jetty</groupId>
300             <artifactId>jetty-util</artifactId>
301             <version>9.4.8.v20171121</version>
302         </dependency>
303         <dependency>
304             <groupId>org.hibernate.validator</groupId>
305             <artifactId>hibernate-validator</artifactId>
306             <version>6.0.8.Final</version>
307         </dependency>
308         <dependency>
309             <groupId>io.dropwizard</groupId>
310             <artifactId>dropwizard-lifecycle</artifactId>
311             <version>1.2.3</version>
312         </dependency>
313         <dependency>
314             <groupId>com.fasterxml.jackson.module</groupId>
315             <artifactId>jackson-module-afterburner</artifactId>
316             <version>2.9.3</version>
317         </dependency>
318         <dependency>
319             <groupId>io.dropwizard</groupId>
320             <artifactId>dropwizard-configuration</artifactId>
321             <version>1.2.3</version>
322             <scope>test</scope>
323         </dependency>
324         <dependency>
325             <groupId>io.dropwizard</groupId>
326             <artifactId>dropwizard-validation</artifactId>
327             <version>1.2.3</version>
328         </dependency>
329         <dependency>
330             <groupId>com.fasterxml.jackson.datatype</groupId>
331             <artifactId>jackson-datatype-joda</artifactId>
332             <version>2.9.3</version>
333         </dependency>
334         <dependency>
335             <groupId>io.dropwizard</groupId>
336             <artifactId>dropwizard-servlets</artifactId>
337             <version>1.2.3</version>
338         </dependency>
339         <dependency>
340             <groupId>io.dropwizard</groupId>
341             <artifactId>dropwizard-logging</artifactId>
342             <version>1.2.3</version>
343         </dependency>
344         <dependency>
345             <groupId>com.fasterxml.jackson.datatype</groupId>
346             <artifactId>jackson-datatype-jdk8</artifactId>
347             <version>2.9.3</version>
348         </dependency>
349         <dependency>
350             <groupId>com.fasterxml.jackson.jaxrs</groupId>
351             <artifactId>jackson-jaxrs-json-provider</artifactId>
352             <version>2.9.3</version>
353         </dependency>
354         <dependency>
355             <groupId>io.dropwizard</groupId>
356             <artifactId>dropwizard-jersey</artifactId>
357             <version>1.2.3</version>
358         </dependency>
359         <dependency>
360             <groupId>io.dropwizard</groupId>
361             <artifactId>dropwizard-metrics</artifactId>
362             <version>1.2.3</version>
363         </dependency>
364         <dependency>
365             <groupId>com.fasterxml.jackson.datatype</groupId>
366             <artifactId>jackson-datatype-guava</artifactId>
367             <version>2.9.3</version>
368         </dependency>
369         <dependency>
370             <groupId>io.dropwizard</groupId>
371             <artifactId>dropwizard-request-logging</artifactId>
372             <version>1.2.3</version>
373         </dependency>
374         <dependency>
375             <groupId>io.dropwizard</groupId>
376             <artifactId>dropwizard-util</artifactId>
377             <version>1.2.3</version>
378         </dependency>
379         <dependency>
380             <groupId>com.fasterxml.jackson.jaxrs</groupId>
381             <artifactId>jackson-jaxrs-base</artifactId>
382             <version>2.9.3</version>
383         </dependency>
384         <dependency>
385             <groupId>javax.validation</groupId>
386             <artifactId>validation-api</artifactId>
387             <version>1.1.0.Final</version>
388         </dependency>
389         <dependency>
390             <groupId>io.dropwizard</groupId>
391             <artifactId>dropwizard-jackson</artifactId>
392             <version>1.2.3</version>
393         </dependency>
394         <dependency>
395             <groupId>com.fasterxml.jackson.dataformat</groupId>
396             <artifactId>jackson-dataformat-yaml</artifactId>
397             <version>2.9.4</version>
398         </dependency>
399         <dependency>
400             <groupId>org.bouncycastle</groupId>
401             <artifactId>bcpkix-jdk15on</artifactId>
402             <version>1.57</version>
403         </dependency>
404         <dependency>
405             <groupId>org.eclipse.jetty</groupId>
406             <artifactId>jetty-security</artifactId>
407             <version>9.4.8.v20171121</version>
408         </dependency>
409         <dependency>
410             <groupId>org.eclipse.jetty</groupId>
411             <artifactId>jetty-xml</artifactId>
412             <version>9.4.8.v20171121</version>
413         </dependency>
414         <dependency>
415             <groupId>org.eclipse.jetty</groupId>
416             <artifactId>jetty-servlets</artifactId>
417             <version>9.4.8.v20171121</version>
418         </dependency>
419         <dependency>
420             <groupId>org.eclipse.jetty</groupId>
421             <artifactId>jetty-webapp</artifactId>
422             <version>9.4.8.v20171121</version>
423         </dependency>
424         <dependency>
425             <groupId>org.eclipse.jetty</groupId>
426             <artifactId>jetty-continuation</artifactId>
427             <version>9.4.8.v20171121</version>
428         </dependency>
429         <dependency>
430             <groupId>logkit</groupId>
431             <artifactId>logkit</artifactId>
432             <version>2.0</version>
433         </dependency>
434   </dependencies>
435 </project>