17b91b18810e5de44601b4e6ada26a21dc37d138
[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"
3          xmlns="http://maven.apache.org/POM/4.0.0"
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>2.0.5</version>
10         <relativePath/>
11     </parent>
12
13     <groupId>org.opendaylight.groupbasedpolicy</groupId>
14     <artifactId>odl-groupbasedpolicy-base</artifactId>
15     <version>0.7.0-SNAPSHOT</version>
16     <packaging>feature</packaging>
17
18     <!-- <name> formatting is used by autorelease to parse and notify projects on
19        build failure. Please do not modify this unless you have a good reason. -->
20     <name>ODL :: groupbasedpolicy :: ${project.artifactId}</name>
21
22     <properties>
23         <config.version>0.8.0-SNAPSHOT</config.version>
24         <controller.mdsal.version>1.7.0-SNAPSHOT</controller.mdsal.version>
25         <mdsal.binding.base.model>0.12.0-SNAPSHOT</mdsal.binding.base.model>
26         <mdsal.binding.base>2.4.0-SNAPSHOT</mdsal.binding.base>
27         <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
28     </properties>
29
30     <dependencyManagement>
31         <dependencies>
32             <!-- ODL-GBP-ARTIFACTS -->
33             <dependency>
34                 <groupId>${project.groupId}</groupId>
35                 <artifactId>groupbasedpolicy-artifacts</artifactId>
36                 <version>${project.version}</version>
37                 <type>pom</type>
38                 <scope>import</scope>
39             </dependency>
40             <!-- ODL-CONTROLLER-ARTIFACTS -->
41             <dependency>
42                 <groupId>org.opendaylight.controller</groupId>
43                 <artifactId>mdsal-artifacts</artifactId>
44                 <version>${controller.mdsal.version}</version>
45                 <scope>import</scope>
46                 <type>pom</type>
47             </dependency>
48             <!-- ODL-MD-SAL-ARTIFACTS -->
49             <dependency>
50                 <groupId>org.opendaylight.mdsal.model</groupId>
51                 <artifactId>mdsal-model-artifacts</artifactId>
52                 <version>${mdsal.binding.base.model}</version>
53                 <type>pom</type>
54                 <scope>import</scope>
55             </dependency>
56             <dependency>
57                 <groupId>org.opendaylight.mdsal</groupId>
58                 <artifactId>features-mdsal</artifactId>
59                 <version>${mdsal.binding.base}</version>
60                 <type>pom</type>
61                 <scope>import</scope>
62             </dependency>
63         </dependencies>
64     </dependencyManagement>
65
66     <dependencies>
67         <dependency>
68             <groupId>commons-net</groupId>
69             <artifactId>commons-net</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>${project.groupId}</groupId>
73             <artifactId>groupbasedpolicy</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.controller</groupId>
77             <artifactId>odl-mdsal-broker</artifactId>
78             <type>xml</type>
79             <classifier>features</classifier>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.mdsal.model</groupId>
83             <artifactId>odl-mdsal-models</artifactId>
84             <type>xml</type>
85             <classifier>features</classifier>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.mdsal</groupId>
89             <artifactId>odl-mdsal-binding-base</artifactId>
90             <type>xml</type>
91             <classifier>features</classifier>
92         </dependency>
93     </dependencies>
94 </project>