Add INFO.yaml for GBP
[groupbasedpolicy.git] / features / odl-groupbasedpolicy-base / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>single-feature-parent</artifactId>
7         <version>3.1.0</version>
8         <relativePath/>
9     </parent>
10
11     <groupId>org.opendaylight.groupbasedpolicy</groupId>
12     <artifactId>odl-groupbasedpolicy-base</artifactId>
13     <version>0.8.0-SNAPSHOT</version>
14     <packaging>feature</packaging>
15
16     <!-- <name> formatting is used by autorelease to parse and notify projects on
17        build failure. Please do not modify this unless you have a good reason. -->
18     <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
19
20     <properties>
21         <config.version>0.9.0-SNAPSHOT</config.version>
22         <controller.mdsal.version>1.8.0-SNAPSHOT</controller.mdsal.version>
23         <mdsal.binding.base.model>0.13.0-SNAPSHOT</mdsal.binding.base.model>
24         <mdsal.binding.base>2.5.0-SNAPSHOT</mdsal.binding.base>
25         <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
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-CONTROLLER-ARTIFACTS -->
39             <dependency>
40                 <groupId>org.opendaylight.controller</groupId>
41                 <artifactId>mdsal-artifacts</artifactId>
42                 <version>${controller.mdsal.version}</version>
43                 <scope>import</scope>
44                 <type>pom</type>
45             </dependency>
46             <!-- ODL-MD-SAL-ARTIFACTS -->
47             <dependency>
48                 <groupId>org.opendaylight.mdsal.model</groupId>
49                 <artifactId>mdsal-model-artifacts</artifactId>
50                 <version>${mdsal.binding.base.model}</version>
51                 <type>pom</type>
52                 <scope>import</scope>
53             </dependency>
54             <dependency>
55                 <groupId>org.opendaylight.mdsal</groupId>
56                 <artifactId>features-mdsal</artifactId>
57                 <version>${mdsal.binding.base}</version>
58                 <type>pom</type>
59                 <scope>import</scope>
60             </dependency>
61         </dependencies>
62     </dependencyManagement>
63
64     <dependencies>
65         <dependency>
66             <groupId>commons-net</groupId>
67             <artifactId>commons-net</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>${project.groupId}</groupId>
71             <artifactId>groupbasedpolicy</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.controller</groupId>
75             <artifactId>odl-mdsal-broker</artifactId>
76             <type>xml</type>
77             <classifier>features</classifier>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.mdsal.model</groupId>
81             <artifactId>odl-mdsal-models</artifactId>
82             <type>xml</type>
83             <classifier>features</classifier>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.mdsal</groupId>
87             <artifactId>odl-mdsal-binding-base</artifactId>
88             <type>xml</type>
89             <classifier>features</classifier>
90         </dependency>
91     </dependencies>
92 </project>