Release Aluminium
[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>7.0.7</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.neutron</groupId>
13   <artifactId>integration-test-standalone</artifactId>
14   <version>0.15.1</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   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.mdsal</groupId>
29         <artifactId>mdsal-artifacts</artifactId>
30         <version>6.0.7</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34       <dependency>
35         <groupId>org.opendaylight.aaa</groupId>
36         <artifactId>aaa-artifacts</artifactId>
37         <version>0.12.1</version>
38         <type>pom</type>
39         <scope>import</scope>
40       </dependency>
41       <dependency>
42         <groupId>org.opendaylight.infrautils</groupId>
43         <artifactId>infrautils-artifacts</artifactId>
44         <version>1.8.2</version>
45         <type>pom</type>
46         <scope>import</scope>
47       </dependency>
48     </dependencies>
49   </dependencyManagement>
50
51   <dependencies>
52     <dependency>
53       <!-- GSON is only used by the test code (which is in src/main here) -->
54       <groupId>com.google.code.gson</groupId>
55       <artifactId>gson</artifactId>
56     </dependency>
57
58     <dependency>
59       <groupId>junit</groupId>
60       <artifactId>junit</artifactId>
61       <scope>compile</scope>
62     </dependency>
63
64     <dependency>
65       <groupId>org.opendaylight.neutron</groupId>
66       <artifactId>northbound-api</artifactId>
67       <version>${project.version}</version>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.neutron</groupId>
72       <artifactId>transcriber</artifactId>
73       <version>${project.version}</version>
74       <scope>test</scope>
75     </dependency>
76
77     <dependency>
78       <groupId>org.opendaylight.mdsal</groupId>
79       <artifactId>mdsal-binding-test-utils</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.infrautils</groupId>
83       <artifactId>infrautils-testutils</artifactId>
84       <scope>test</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.infrautils</groupId>
88       <artifactId>inject.guice.testutils</artifactId>
89       <scope>test</scope>
90       <exclusions>
91         <exclusion>
92           <groupId>aopalliance</groupId>
93           <artifactId>aopalliance</artifactId>
94         </exclusion>
95       </exclusions>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.aaa.web</groupId>
99       <artifactId>web-jetty-impl</artifactId>
100       <scope>test</scope>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.aaa.web</groupId>
104       <artifactId>servlet-jersey2</artifactId>
105       <scope>test</scope>
106     </dependency>
107     <dependency>
108       <groupId>org.glassfish.jersey.inject</groupId>
109       <artifactId>jersey-hk2</artifactId>
110       <scope>test</scope>
111     </dependency>
112   </dependencies>
113 </project>