Musings towards making dummyprovider accessible
[neutron.git] / features / production / 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   <parent>
5     <groupId>org.opendaylight.odlparent</groupId>
6     <artifactId>features-parent</artifactId>
7     <version>1.5.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10   <groupId>org.opendaylight.neutron</groupId>
11   <artifactId>features-neutron</artifactId>
12   <version>0.5.0-SNAPSHOT</version>
13   <packaging>jar</packaging>
14   <properties>
15       <aaa.version>0.2.0-SNAPSHOT</aaa.version>
16   </properties>
17
18   <dependencies>
19     <dependency>
20       <groupId>org.opendaylight.aaa</groupId>
21       <artifactId>features-aaa</artifactId>
22       <version>${aaa.version}</version>
23       <classifier>features</classifier>
24       <type>xml</type>
25     </dependency>
26     <dependency>
27       <groupId>org.osgi</groupId>
28       <artifactId>org.osgi.core</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>com.sun.jersey</groupId>
32       <artifactId>jersey-core</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>com.sun.jersey</groupId>
36       <artifactId>jersey-server</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller.thirdparty</groupId>
40       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.eclipse.persistence</groupId>
44       <artifactId>org.eclipse.persistence.moxy</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.eclipse.persistence</groupId>
48       <artifactId>org.eclipse.persistence.core</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.eclipse.persistence</groupId>
52       <artifactId>org.eclipse.persistence.antlr</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>commons-net</groupId>
56       <artifactId>commons-net</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>${project.groupId}</groupId>
60       <artifactId>neutron-spi</artifactId>
61       <version>${project.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>${project.groupId}</groupId>
65       <artifactId>northbound-api</artifactId>
66       <version>${project.version}</version>
67     </dependency>
68     <dependency>
69       <groupId>${project.groupId}</groupId>
70       <artifactId>transcriber</artifactId>
71       <version>${project.version}</version>
72     </dependency>
73   </dependencies>
74   <scm>
75     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
76     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
77     <tag>HEAD</tag>
78     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
79   </scm>
80 </project>