Bump versions by x.y.(z+1)
[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.7.5-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10   <groupId>org.opendaylight.neutron</groupId>
11   <artifactId>features-neutron</artifactId>
12   <version>0.7.5-SNAPSHOT</version>
13   <packaging>jar</packaging>
14   <properties>
15       <aaa.version>0.4.5-SNAPSHOT</aaa.version>
16       <yangtools.version>1.0.5-SNAPSHOT</yangtools.version>
17       <controller.mdsal.version>1.4.5-SNAPSHOT</controller.mdsal.version>
18       <mdsal.model.version>0.9.5-SNAPSHOT</mdsal.model.version>
19       <restconf.version>1.4.5-SNAPSHOT</restconf.version>
20   </properties>
21   <dependencyManagement>
22     <dependencies>
23       <!-- project specific dependencies -->
24       <dependency>
25         <groupId>org.opendaylight.yangtools</groupId>
26         <artifactId>yangtools-artifacts</artifactId>
27         <version>${yangtools.version}</version>
28         <type>pom</type>
29         <scope>import</scope>
30       </dependency>
31       <dependency>
32         <groupId>org.opendaylight.controller</groupId>
33         <artifactId>mdsal-artifacts</artifactId>
34         <version>${controller.mdsal.version}</version>
35         <type>pom</type>
36         <scope>import</scope>
37       </dependency>
38       <dependency>
39         <groupId>org.opendaylight.netconf</groupId>
40         <artifactId>restconf-artifacts</artifactId>
41         <version>${restconf.version}</version>
42         <type>pom</type>
43         <scope>import</scope>
44       </dependency>
45     </dependencies>
46   </dependencyManagement>
47   <dependencies>
48     <dependency>
49       <groupId>org.opendaylight.yangtools</groupId>
50       <artifactId>features-yangtools</artifactId>
51       <type>xml</type>
52       <classifier>features</classifier>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.controller</groupId>
56       <artifactId>features-mdsal</artifactId>
57       <type>xml</type>
58       <classifier>features</classifier>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.netconf</groupId>
62       <artifactId>features-restconf</artifactId>
63       <version>${restconf.version}</version>
64       <type>xml</type>
65       <classifier>features</classifier>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.aaa</groupId>
69       <artifactId>features-aaa-shiro</artifactId>
70       <version>${aaa.version}</version>
71       <classifier>features</classifier>
72       <type>xml</type>
73     </dependency>
74     <dependency>
75       <groupId>org.osgi</groupId>
76       <artifactId>org.osgi.core</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>com.sun.jersey</groupId>
80       <artifactId>jersey-core</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>com.sun.jersey</groupId>
84       <artifactId>jersey-server</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.eclipse.persistence</groupId>
88       <artifactId>org.eclipse.persistence.moxy</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.eclipse.persistence</groupId>
92       <artifactId>org.eclipse.persistence.core</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.eclipse.persistence</groupId>
96       <artifactId>org.eclipse.persistence.antlr</artifactId>
97     </dependency>
98     <dependency>
99         <groupId>javax.validation</groupId>
100         <artifactId>validation-api</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>commons-net</groupId>
104       <artifactId>commons-net</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>${project.groupId}</groupId>
108       <artifactId>neutron-spi</artifactId>
109       <version>${project.version}</version>
110     </dependency>
111     <dependency>
112       <groupId>${project.groupId}</groupId>
113       <artifactId>northbound-api</artifactId>
114       <version>${project.version}</version>
115     </dependency>
116     <dependency>
117       <groupId>${project.groupId}</groupId>
118       <artifactId>model</artifactId>
119       <version>${project.version}</version>
120     </dependency>
121     <dependency>
122       <groupId>${project.groupId}</groupId>
123       <artifactId>transcriber</artifactId>
124       <version>${project.version}</version>
125     </dependency>
126     <dependency>
127       <groupId>${project.groupId}</groupId>
128       <artifactId>neutron-logger</artifactId>
129       <version>${project.version}</version>
130     </dependency>
131   </dependencies>
132   <scm>
133     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
134     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
135     <tag>HEAD</tag>
136     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
137   </scm>
138 </project>