Bump odlparent to 4.0.7
[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.7</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.neutron</groupId>
13   <artifactId>integration-test-standalone</artifactId>
14   <version>0.12.0-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
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>sal-binding-broker-impl</artifactId>
54       <version>1.9.0-SNAPSHOT</version>
55       <scope>test</scope>
56       <exclusions>
57         <exclusion>
58           <groupId>javax.xml.bind</groupId>
59           <artifactId>jaxb-api</artifactId>
60         </exclusion>
61         <exclusion>
62           <groupId>javax.activation</groupId>
63           <artifactId>activation</artifactId>
64         </exclusion>
65       </exclusions>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>sal-binding-broker-impl</artifactId>
70       <version>1.9.0-SNAPSHOT</version>
71       <type>test-jar</type>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.infrautils</groupId>
76       <artifactId>infrautils-testutils</artifactId>
77       <version>1.5.0-SNAPSHOT</version>
78       <scope>test</scope>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.infrautils</groupId>
82       <artifactId>inject.guice.testutils</artifactId>
83       <version>1.5.0-SNAPSHOT</version>
84       <scope>test</scope>
85       <exclusions>
86         <exclusion>
87           <groupId>aopalliance</groupId>
88           <artifactId>aopalliance</artifactId>
89         </exclusion>
90       </exclusions>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.aaa.web</groupId>
94       <artifactId>web-jetty-impl</artifactId>
95       <version>0.9.0-SNAPSHOT</version>
96       <scope>test</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.aaa.web</groupId>
100       <artifactId>servlet-jersey2</artifactId>
101       <version>0.9.0-SNAPSHOT</version>
102       <scope>test</scope>
103     </dependency>
104   </dependencies>
105 </project>