35e0e1197775c7dd8cced10768546eb1f6b1b2f0
[openflowplugin.git] / applications / features / 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.1-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.openflowplugin</groupId>
12   <version>0.3.1-SNAPSHOT</version>
13   <artifactId>features-flow</artifactId>
14   <packaging>jar</packaging>
15
16   <properties>
17     <yangtools.version>1.0.1-SNAPSHOT</yangtools.version>
18     <config.version>0.5.1-SNAPSHOT</config.version>
19     <mdsal.version>1.4.1-SNAPSHOT</mdsal.version>
20     <openflowjava.version>0.8.1-SNAPSHOT</openflowjava.version>
21     <lldp.version>0.11.1-SNAPSHOT</lldp.version>
22
23     <config.configfile.directory>etc/opendaylight/karaf</config.configfile.directory>
24     <config.statistics.manager.configfile>30-statistics-manager.xml</config.statistics.manager.configfile>
25   </properties>
26
27   <dependencyManagement>
28     <dependencies>
29       <!-- This project -->
30       <dependency>
31         <groupId>org.opendaylight.openflowplugin</groupId>
32         <artifactId>openflowplugin-artifacts</artifactId>
33         <version>${project.version}</version>
34         <scope>import</scope>
35         <type>pom</type>
36       </dependency>
37
38       <!-- YANG tools -->
39       <dependency>
40         <groupId>org.opendaylight.yangtools</groupId>
41         <artifactId>yangtools-artifacts</artifactId>
42         <version>${yangtools.version}</version>
43         <scope>import</scope>
44         <type>pom</type>
45       </dependency>
46
47       <!-- Controller infrastructure -->
48       <dependency>
49         <groupId>org.opendaylight.controller</groupId>
50         <artifactId>config-artifacts</artifactId>
51         <version>${config.version}</version>
52         <scope>import</scope>
53         <type>pom</type>
54       </dependency>
55       <dependency>
56         <groupId>org.opendaylight.controller</groupId>
57         <artifactId>mdsal-artifacts</artifactId>
58         <version>${mdsal.version}</version>
59         <scope>import</scope>
60         <type>pom</type>
61       </dependency>
62
63       <!-- OpenFlowJava -->
64       <dependency>
65         <groupId>org.opendaylight.openflowjava</groupId>
66         <artifactId>openflowjava-artifacts</artifactId>
67         <version>${openflowjava.version}</version>
68         <scope>import</scope>
69         <type>pom</type>
70       </dependency>
71     </dependencies>
72   </dependencyManagement>
73
74   <dependencies>
75     <dependency>
76       <groupId>org.opendaylight.controller</groupId>
77       <artifactId>features-mdsal</artifactId>
78       <classifier>features</classifier>
79       <type>xml</type>
80     </dependency>
81
82     <dependency>
83       <groupId>org.opendaylight.openflowplugin.model</groupId>
84       <artifactId>model-flow-base</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.openflowplugin.model</groupId>
88       <artifactId>model-flow-service</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.openflowplugin.model</groupId>
92       <artifactId>model-flow-statistics</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.controller.model</groupId>
96       <artifactId>model-inventory</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.controller.model</groupId>
100       <artifactId>model-topology</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.openflowplugin.applications</groupId>
104       <artifactId>topology-manager</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.openflowplugin.applications</groupId>
108       <artifactId>topology-lldp-discovery</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>org.opendaylight.openflowplugin.applications</groupId>
112       <artifactId>statistics-manager</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.openflowplugin.applications</groupId>
116       <artifactId>inventory-manager</artifactId>
117     </dependency>
118     <dependency>
119       <groupId>org.opendaylight.openflowplugin.applications</groupId>
120       <artifactId>forwardingrules-manager</artifactId>
121     </dependency>
122     <dependency>
123       <groupId>org.opendaylight.openflowplugin</groupId>
124       <artifactId>openflowplugin-common</artifactId>
125     </dependency>
126     <dependency>
127       <groupId>org.opendaylight.controller</groupId>
128       <artifactId>liblldp</artifactId>
129       <version>${lldp.version}</version>
130     </dependency>
131   </dependencies>
132
133   <scm>
134     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
135     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
136     <tag>HEAD</tag>
137     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
138   </scm>
139 </project>