6223c7f509350c498b9a57c4cc359bec624b6d6f
[vfc/nfvo/wfengine.git] / wso2 / dropwizard-ioc-container / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright 2017 ZTE Corporation. Licensed under the Apache License, Version 
3         2.0 (the "License"); you may not use this file except in compliance with 
4         the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 
5         Unless required by applicable law or agreed to in writing, software distributed 
6         under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES 
7         OR CONDITIONS OF ANY KIND, either express or implied. See the License for 
8         the specific language governing permissions and limitations under the License. -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10         <modelVersion>4.0.0</modelVersion>
11         <parent>
12                 <groupId>org.openo.common-services.common-utilities</groupId>
13                 <artifactId>common-setting</artifactId>
14                 <version>1.1.0-SNAPSHOT</version>
15         </parent>
16         <artifactId>dropwizard-ioc-container</artifactId>
17         <name>common-services-common-utilities/dropwizard-ioc-container</name>
18         <properties>
19         </properties>
20         <dependencies>
21
22                 <dependency>
23                         <groupId>io.dropwizard</groupId>
24                         <artifactId>dropwizard-core</artifactId>
25                         <version>0.8.0</version>
26                         <scope>provided</scope>
27                 </dependency>
28
29                 <dependency>
30                         <groupId>org.reflections</groupId>
31                         <artifactId>reflections</artifactId>
32                         <version>0.9.10</version>
33                         <exclusions>
34                                 <exclusion>
35                                         <groupId>com.google.guava</groupId>
36                                         <artifactId>guava</artifactId>
37                                 </exclusion>
38                         </exclusions>
39                 </dependency>
40                 <dependency>
41                         <groupId>junit</groupId>
42                         <artifactId>junit</artifactId>
43                         <scope>test</scope>
44                         <version>4.8.2</version>
45                 </dependency>
46
47         </dependencies>
48
49         <build>
50                 <plugins>
51                         <plugin>
52                                 <groupId>org.apache.maven.plugins</groupId>
53                                 <artifactId>maven-surefire-plugin</artifactId>
54                                 <configuration>
55                                         <forkMode>always</forkMode>
56                                         <argLine>-XX:-UseSplitVerifier</argLine>
57                                         <skip>${maven.test.skip}</skip>
58                                         <testFailureIgnore>${maven.test.failure.ignore}</testFailureIgnore>
59                                         <excludes>
60                                                 <exclude>${excludesFile}</exclude>
61                                         </excludes>
62                                 </configuration>
63                         </plugin>
64
65                         <plugin>
66                                 <groupId>org.apache.maven.plugins</groupId>
67                                 <artifactId>maven-compiler-plugin</artifactId>
68                                 <version>3.5</version>
69                                 <configuration>
70                                         <source>1.8</source>
71                                         <target>1.8</target>
72                                         <testSource>1.8</testSource>
73                                         <testTarget>1.8</testTarget>
74                                 </configuration>
75                         </plugin>
76
77
78                 </plugins>
79         </build>
80 </project>