Restore duplicate check
[neutron.git] / integration / test-standalone / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.odlparent</groupId>
7     <artifactId>bundle-parent</artifactId>
8     <version>3.1.4</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.neutron</groupId>
13   <artifactId>integration-test-standalone</artifactId>
14   <version>0.11.1-SNAPSHOT</version>
15
16   <!-- <name> formatting is used by autorelease to parse and notify projects on
17        build failure. Please do not modify this unless you have a good reason. -->
18   <name>ODL :: neutron :: ${project.artifactId}</name>
19
20   <dependencies>
21     <dependency>
22       <groupId>com.google.code.gson</groupId>
23       <artifactId>gson</artifactId>
24     </dependency>
25
26     <dependency>
27       <groupId>junit</groupId>
28       <artifactId>junit</artifactId>
29       <scope>compile</scope>
30     </dependency>
31
32     <dependency>
33       <groupId>javax.inject</groupId>
34       <artifactId>javax.inject</artifactId>
35     </dependency>
36
37     <dependency>
38       <groupId>org.opendaylight.neutron</groupId>
39       <artifactId>northbound-api</artifactId>
40       <version>${project.version}</version>
41       <scope>test</scope>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.neutron</groupId>
45       <artifactId>transcriber</artifactId>
46       <version>${project.version}</version>
47       <scope>test</scope>
48     </dependency>
49
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>sal-binding-broker-impl</artifactId>
53       <version>1.8.1-SNAPSHOT</version>
54       <scope>test</scope>
55       <exclusions>
56         <exclusion>
57           <groupId>javax.xml.bind</groupId>
58           <artifactId>jaxb-api</artifactId>
59         </exclusion>
60         <exclusion>
61           <groupId>javax.activation</groupId>
62           <artifactId>activation</artifactId>
63         </exclusion>
64       </exclusions>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.controller</groupId>
68       <artifactId>sal-binding-broker-impl</artifactId>
69       <version>1.8.1-SNAPSHOT</version>
70       <type>test-jar</type>
71       <scope>test</scope>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.infrautils</groupId>
75       <artifactId>infrautils-testutils</artifactId>
76       <version>1.4.1-SNAPSHOT</version>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.infrautils</groupId>
81       <artifactId>inject.guice.testutils</artifactId>
82       <version>1.4.1-SNAPSHOT</version>
83       <scope>test</scope>
84       <exclusions>
85         <exclusion>
86           <groupId>aopalliance</groupId>
87           <artifactId>aopalliance</artifactId>
88         </exclusion>
89       </exclusions>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.aaa.web</groupId>
93       <artifactId>web-jetty-impl</artifactId>
94       <version>0.8.1-SNAPSHOT</version>
95       <scope>test</scope>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.aaa.web</groupId>
99       <artifactId>servlet-jersey2</artifactId>
100       <version>0.8.1-SNAPSHOT</version>
101       <scope>test</scope>
102     </dependency>
103     <dependency>
104       <groupId>org.glassfish.jersey.bundles.repackaged</groupId>
105       <artifactId>jersey-guava</artifactId>
106       <version>2.6</version>
107       <scope>test</scope>
108     </dependency>
109   </dependencies>
110 </project>