67198e6789812e57f1bf40aae3ea99b753c0459d
[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>6.0.4</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.neutron</groupId>
13   <artifactId>integration-test-standalone</artifactId>
14   <version>0.15.0-SNAPSHOT</version>
15   <packaging>bundle</packaging>
16
17   <!-- <name> formatting is used by autorelease to parse and notify projects on
18        build failure. Please do not modify this unless you have a good reason. -->
19   <name>ODL :: neutron :: ${project.artifactId}</name>
20
21   <properties>
22     <odlparent.spotbugs.enforce>false</odlparent.spotbugs.enforce>
23   </properties>
24
25   <dependencies>
26     <dependency>
27       <!-- GSON is only used by the test code (which is in src/main here) -->
28       <groupId>com.google.code.gson</groupId>
29       <artifactId>gson</artifactId>
30     </dependency>
31
32     <dependency>
33       <groupId>junit</groupId>
34       <artifactId>junit</artifactId>
35       <scope>compile</scope>
36     </dependency>
37
38     <dependency>
39       <groupId>javax.inject</groupId>
40       <artifactId>javax.inject</artifactId>
41     </dependency>
42
43     <dependency>
44       <groupId>org.opendaylight.neutron</groupId>
45       <artifactId>northbound-api</artifactId>
46       <version>${project.version}</version>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.neutron</groupId>
51       <artifactId>transcriber</artifactId>
52       <version>${project.version}</version>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>javax.activation</groupId>
57       <artifactId>activation</artifactId>
58       <scope>test</scope>
59     </dependency>
60
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>sal-binding-broker-impl</artifactId>
64       <version>1.12.0-SNAPSHOT</version>
65       <scope>test</scope>
66       <exclusions>
67         <exclusion>
68           <groupId>javax.xml.bind</groupId>
69           <artifactId>jaxb-api</artifactId>
70         </exclusion>
71       </exclusions>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.controller</groupId>
75       <artifactId>sal-binding-broker-impl</artifactId>
76       <version>1.12.0-SNAPSHOT</version>
77       <type>test-jar</type>
78       <scope>test</scope>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.infrautils</groupId>
82       <artifactId>infrautils-testutils</artifactId>
83       <version>1.8.0-SNAPSHOT</version>
84       <scope>test</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.infrautils</groupId>
88       <artifactId>inject.guice.testutils</artifactId>
89       <version>1.8.0-SNAPSHOT</version>
90       <scope>test</scope>
91       <exclusions>
92         <exclusion>
93           <groupId>aopalliance</groupId>
94           <artifactId>aopalliance</artifactId>
95         </exclusion>
96       </exclusions>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.aaa.web</groupId>
100       <artifactId>web-jetty-impl</artifactId>
101       <version>0.12.0-SNAPSHOT</version>
102       <scope>test</scope>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.aaa.web</groupId>
106       <artifactId>servlet-jersey2</artifactId>
107       <version>0.12.0-SNAPSHOT</version>
108       <scope>test</scope>
109     </dependency>
110   </dependencies>
111 </project>