7efaf19e1831cfbca05e78f3b7197d8937817286
[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>4.0.14</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.neutron</groupId>
13   <artifactId>integration-test-standalone</artifactId>
14   <version>0.12.3-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       <!-- GSON is only used by the test code (which is in src/main here) -->
23       <groupId>com.google.code.gson</groupId>
24       <artifactId>gson</artifactId>
25     </dependency>
26
27     <dependency>
28       <groupId>junit</groupId>
29       <artifactId>junit</artifactId>
30       <scope>compile</scope>
31     </dependency>
32
33     <dependency>
34       <groupId>javax.inject</groupId>
35       <artifactId>javax.inject</artifactId>
36     </dependency>
37
38     <dependency>
39       <groupId>org.opendaylight.neutron</groupId>
40       <artifactId>northbound-api</artifactId>
41       <version>${project.version}</version>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.neutron</groupId>
46       <artifactId>transcriber</artifactId>
47       <version>${project.version}</version>
48       <scope>test</scope>
49     </dependency>
50     <dependency>
51       <groupId>javax.activation</groupId>
52       <artifactId>activation</artifactId>
53       <scope>test</scope>
54     </dependency>
55
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>sal-binding-broker-impl</artifactId>
59       <version>1.9.3-SNAPSHOT</version>
60       <scope>test</scope>
61       <exclusions>
62         <exclusion>
63           <groupId>javax.xml.bind</groupId>
64           <artifactId>jaxb-api</artifactId>
65         </exclusion>
66       </exclusions>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.controller</groupId>
70       <artifactId>sal-binding-broker-impl</artifactId>
71       <version>1.9.3-SNAPSHOT</version>
72       <type>test-jar</type>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.opendaylight.infrautils</groupId>
77       <artifactId>infrautils-testutils</artifactId>
78       <version>1.5.3-SNAPSHOT</version>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.infrautils</groupId>
83       <artifactId>inject.guice.testutils</artifactId>
84       <version>1.5.3-SNAPSHOT</version>
85       <scope>test</scope>
86       <exclusions>
87         <exclusion>
88           <groupId>aopalliance</groupId>
89           <artifactId>aopalliance</artifactId>
90         </exclusion>
91       </exclusions>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.aaa.web</groupId>
95       <artifactId>web-jetty-impl</artifactId>
96       <version>0.9.3-SNAPSHOT</version>
97       <scope>test</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.aaa.web</groupId>
101       <artifactId>servlet-jersey2</artifactId>
102       <version>0.9.3-SNAPSHOT</version>
103       <scope>test</scope>
104     </dependency>
105   </dependencies>
106 </project>