Add missing <name> fields for pom.xml files
[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.8.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10   <groupId>org.opendaylight.neutron</groupId>
11   <artifactId>features-neutron</artifactId>
12   <version>0.8.0-SNAPSHOT</version>
13   <packaging>jar</packaging>
14   <!-- <name> formatting is used by autorelease to parse and notify projects on
15        build failure. Please do not modify this unless you have a good reason. -->
16   <name>ODL :: neutron :: ${project.artifactId}</name>
17   <properties>
18       <aaa.version>0.5.0-SNAPSHOT</aaa.version>
19       <yangtools.version>1.1.0-SNAPSHOT</yangtools.version>
20       <controller.mdsal.version>1.5.0-SNAPSHOT</controller.mdsal.version>
21       <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
22       <restconf.version>1.5.0-SNAPSHOT</restconf.version>
23       <ovsdb.version>1.4.0-SNAPSHOT</ovsdb.version>
24   </properties>
25   <dependencyManagement>
26     <dependencies>
27       <!-- project specific dependencies -->
28       <dependency>
29         <groupId>org.opendaylight.yangtools</groupId>
30         <artifactId>yangtools-artifacts</artifactId>
31         <version>${yangtools.version}</version>
32         <type>pom</type>
33         <scope>import</scope>
34       </dependency>
35       <dependency>
36         <groupId>org.opendaylight.controller</groupId>
37         <artifactId>mdsal-artifacts</artifactId>
38         <version>${controller.mdsal.version}</version>
39         <type>pom</type>
40         <scope>import</scope>
41       </dependency>
42       <dependency>
43         <groupId>org.opendaylight.netconf</groupId>
44         <artifactId>restconf-artifacts</artifactId>
45         <version>${restconf.version}</version>
46         <type>pom</type>
47         <scope>import</scope>
48       </dependency>
49     </dependencies>
50   </dependencyManagement>
51   <dependencies>
52     <dependency>
53       <groupId>org.opendaylight.yangtools</groupId>
54       <artifactId>features-yangtools</artifactId>
55       <type>xml</type>
56       <classifier>features</classifier>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>features-mdsal</artifactId>
61       <type>xml</type>
62       <classifier>features</classifier>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.netconf</groupId>
66       <artifactId>features-restconf</artifactId>
67       <version>${restconf.version}</version>
68       <type>xml</type>
69       <classifier>features</classifier>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.aaa</groupId>
73       <artifactId>features-aaa-shiro</artifactId>
74       <version>${aaa.version}</version>
75       <classifier>features</classifier>
76       <type>xml</type>
77     </dependency>
78     <dependency>
79       <groupId>org.osgi</groupId>
80       <artifactId>org.osgi.core</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>com.sun.jersey</groupId>
84       <artifactId>jersey-core</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>com.sun.jersey</groupId>
88       <artifactId>jersey-server</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.eclipse.persistence</groupId>
92       <artifactId>org.eclipse.persistence.moxy</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.eclipse.persistence</groupId>
96       <artifactId>org.eclipse.persistence.core</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.eclipse.persistence</groupId>
100       <artifactId>org.eclipse.persistence.antlr</artifactId>
101     </dependency>
102     <dependency>
103         <groupId>javax.validation</groupId>
104         <artifactId>validation-api</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>commons-net</groupId>
108       <artifactId>commons-net</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>${project.groupId}</groupId>
112       <artifactId>neutron-spi</artifactId>
113       <version>${project.version}</version>
114     </dependency>
115     <dependency>
116       <groupId>${project.groupId}</groupId>
117       <artifactId>northbound-api</artifactId>
118       <version>${project.version}</version>
119     </dependency>
120     <dependency>
121       <groupId>${project.groupId}</groupId>
122       <artifactId>model</artifactId>
123       <version>${project.version}</version>
124     </dependency>
125     <dependency>
126       <groupId>${project.groupId}</groupId>
127       <artifactId>transcriber</artifactId>
128       <version>${project.version}</version>
129     </dependency>
130     <dependency>
131       <groupId>${project.groupId}</groupId>
132       <artifactId>neutron-logger</artifactId>
133       <version>${project.version}</version>
134     </dependency>
135     <dependency>
136       <groupId>org.opendaylight.ovsdb</groupId>
137       <artifactId>southbound-features</artifactId>
138       <version>${ovsdb.version}</version>
139       <classifier>features</classifier>
140       <type>xml</type>
141       <scope>runtime</scope>
142     </dependency>
143     <dependency>
144       <groupId>org.opendaylight.ovsdb</groupId>
145       <artifactId>utils.mdsal-utils</artifactId>
146       <version>${ovsdb.version}</version>
147     </dependency>
148     <dependency>
149       <groupId>${project.groupId}</groupId>
150       <artifactId>neutron-hostconfig-utils</artifactId>
151       <version>${project.version}</version>
152     </dependency>
153     <dependency>
154       <groupId>${project.groupId}</groupId>
155       <artifactId>neutron-hostconfig-ovs</artifactId>
156       <version>${project.version}</version>
157     </dependency>
158   </dependencies>
159   <scm>
160     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
161     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
162     <tag>HEAD</tag>
163     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
164   </scm>
165 </project>