Package domain-extensions in a separate feature
[groupbasedpolicy.git] / features / odl-groupbasedpolicy-neutronmapper / 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     <parent>
7         <groupId>org.opendaylight.odlparent</groupId>
8         <artifactId>single-feature-parent</artifactId>
9         <version>3.0.2</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.groupbasedpolicy</groupId>
14     <artifactId>odl-groupbasedpolicy-neutronmapper</artifactId>
15     <version>0.8.0-SNAPSHOT</version>
16     <packaging>feature</packaging>
17     <!--
18          The Neutron provider
19     -->
20     <!-- <name> formatting is used by autorelease to parse and notify projects on
21        build failure. Please do not modify this unless you have a good reason. -->
22     <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
23
24     <properties>
25         <neutron.version>0.11.0-SNAPSHOT</neutron.version>
26     </properties>
27
28     <dependencyManagement>
29         <dependencies>
30             <!-- ODL-GBP-ARTIFACTS -->
31             <dependency>
32                 <groupId>${project.groupId}</groupId>
33                 <artifactId>groupbasedpolicy-artifacts</artifactId>
34                 <version>${project.version}</version>
35                 <type>pom</type>
36                 <scope>import</scope>
37             </dependency>
38             <!-- ODL-NEUTRON-ARTIFACTS -->
39             <dependency>
40                 <groupId>org.opendaylight.neutron</groupId>
41                 <artifactId>neutron-artifacts</artifactId>
42                 <version>${neutron.version}</version>
43                 <type>pom</type>
44                 <scope>import</scope>
45             </dependency>
46         </dependencies>
47     </dependencyManagement>
48
49     <dependencies>
50         <dependency>
51             <groupId>${project.groupId}</groupId>
52             <artifactId>neutron-mapper</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}</groupId>
56             <artifactId>odl-groupbasedpolicy-base</artifactId>
57             <type>xml</type>
58             <classifier>features</classifier>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>odl-groupbasedpolicy-domain-extensions</artifactId>
63             <type>xml</type>
64             <classifier>features</classifier>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.neutron</groupId>
68             <artifactId>odl-neutron-service</artifactId>
69             <type>xml</type>
70             <classifier>features</classifier>
71         </dependency>
72     </dependencies>
73 </project>