Prep work for transcriber writing yang model:
[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       <yangtools.version>0.7.0-SNAPSHOT</yangtools.version>
17       <mdsal.version>1.2.0-SNAPSHOT</mdsal.version>
18   </properties>
19   <dependencyManagement>
20     <dependencies>
21       <!-- project specific dependencies -->
22       <dependency>
23         <groupId>org.opendaylight.yangtools</groupId>
24         <artifactId>yangtools-artifacts</artifactId>
25         <version>${yangtools.version}</version>
26         <type>pom</type>
27         <scope>import</scope>
28       </dependency>
29       <dependency>
30         <groupId>org.opendaylight.controller</groupId>
31         <artifactId>mdsal-artifacts</artifactId>
32         <version>${mdsal.version}</version>
33         <type>pom</type>
34         <scope>import</scope>
35       </dependency>
36     </dependencies>
37   </dependencyManagement>
38   <dependencies>
39     <dependency>
40       <groupId>org.opendaylight.yangtools</groupId>
41       <artifactId>features-yangtools</artifactId>
42       <type>xml</type>
43       <classifier>features</classifier>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>features-mdsal</artifactId>
48       <type>xml</type>
49       <classifier>features</classifier>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.aaa</groupId>
53       <artifactId>features-aaa</artifactId>
54       <version>${aaa.version}</version>
55       <classifier>features</classifier>
56       <type>xml</type>
57     </dependency>
58     <dependency>
59       <groupId>org.osgi</groupId>
60       <artifactId>org.osgi.core</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>com.sun.jersey</groupId>
64       <artifactId>jersey-core</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>com.sun.jersey</groupId>
68       <artifactId>jersey-server</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.controller.thirdparty</groupId>
72       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.eclipse.persistence</groupId>
76       <artifactId>org.eclipse.persistence.moxy</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.eclipse.persistence</groupId>
80       <artifactId>org.eclipse.persistence.core</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.eclipse.persistence</groupId>
84       <artifactId>org.eclipse.persistence.antlr</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>commons-net</groupId>
88       <artifactId>commons-net</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>${project.groupId}</groupId>
92       <artifactId>neutron-spi</artifactId>
93       <version>${project.version}</version>
94     </dependency>
95     <dependency>
96       <groupId>${project.groupId}</groupId>
97       <artifactId>northbound-api</artifactId>
98       <version>${project.version}</version>
99     </dependency>
100     <dependency>
101       <groupId>${project.groupId}</groupId>
102       <artifactId>transcriber</artifactId>
103       <version>${project.version}</version>
104     </dependency>
105     <dependency>
106       <groupId>${project.groupId}</groupId>
107       <artifactId>transcriber</artifactId>
108       <version>${project.version}</version>
109       <type>xml</type>
110       <classifier>config</classifier>
111     </dependency>
112   </dependencies>
113   <scm>
114     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
115     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
116     <tag>HEAD</tag>
117     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
118   </scm>
119 </project>