12e547cea3afde9def89049a0f257e6f7e4f70d9
[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"
3   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <modelVersion>4.0.0</modelVersion>
6
7   <parent>
8     <groupId>org.opendaylight.odlparent</groupId>
9     <artifactId>bundle-parent</artifactId>
10     <version>3.1.0</version>
11     <relativePath/>
12   </parent>
13
14   <groupId>org.opendaylight.neutron</groupId>
15   <artifactId>integration-test-standalone</artifactId>
16   <version>0.11.0-SNAPSHOT</version>
17
18   <!-- <name> formatting is used by autorelease to parse and notify projects on
19        build failure. Please do not modify this unless you have a good reason. -->
20   <name>ODL :: neutron :: ${project.artifactId}</name>
21
22   <dependencies>
23     <dependency>
24       <groupId>com.google.code.gson</groupId>
25       <artifactId>gson</artifactId>
26     </dependency>
27
28     <dependency>
29       <groupId>junit</groupId>
30       <artifactId>junit</artifactId>
31       <scope>compile</scope>
32     </dependency>
33
34     <dependency>
35       <groupId>javax.inject</groupId>
36       <artifactId>javax.inject</artifactId>
37     </dependency>
38
39     <dependency>
40       <groupId>org.opendaylight.neutron</groupId>
41       <artifactId>northbound-api</artifactId>
42       <version>${project.version}</version>
43       <scope>test</scope>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.neutron</groupId>
47       <artifactId>transcriber</artifactId>
48       <version>${project.version}</version>
49       <scope>test</scope>
50     </dependency>
51
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>sal-binding-broker-impl</artifactId>
55       <version>1.8.0-SNAPSHOT</version>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>sal-binding-broker-impl</artifactId>
61       <version>1.8.0-SNAPSHOT</version>
62       <type>test-jar</type>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.infrautils</groupId>
67       <artifactId>infrautils-testutils</artifactId>
68       <version>1.4.0-SNAPSHOT</version>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.infrautils</groupId>
73       <artifactId>inject.guice.testutils</artifactId>
74       <version>1.4.0-SNAPSHOT</version>
75       <scope>test</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.aaa.web</groupId>
79       <artifactId>web-jetty-impl</artifactId>
80       <version>0.8.0-SNAPSHOT</version>
81       <scope>test</scope>
82     </dependency>
83
84     <!-- TODO This is temporary, remove this again, soon -->
85     <dependency>
86       <groupId>org.osgi</groupId>
87       <artifactId>org.osgi.core</artifactId>
88       <scope>test</scope>
89     </dependency>
90   </dependencies>
91 </project>