Bump yangtools to 1.0.0-SNAPSHOT
[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.0-SNAPSHOT</version>
8     <relativePath/>
9   </parent>
10
11   <groupId>org.opendaylight.openflowplugin</groupId>
12   <version>0.3.0-SNAPSHOT</version>
13   <artifactId>features-flow</artifactId>
14   <packaging>jar</packaging>
15
16   <properties>
17     <yangtools.version>1.0.0-SNAPSHOT</yangtools.version>
18     <config.version>0.5.0-SNAPSHOT</config.version>
19     <mdsal.version>1.4.0-SNAPSHOT</mdsal.version>
20     <openflowjava.version>0.8.0-SNAPSHOT</openflowjava.version>
21     <lldp.version>0.11.0-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.applications</groupId>
84       <artifactId>statistics-manager-config</artifactId>
85       <type>xml</type>
86       <classifier>config</classifier>
87     </dependency>
88
89     <dependency>
90       <groupId>org.opendaylight.openflowplugin.model</groupId>
91       <artifactId>model-flow-base</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.openflowplugin.model</groupId>
95       <artifactId>model-flow-service</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.opendaylight.openflowplugin.model</groupId>
99       <artifactId>model-flow-statistics</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>org.opendaylight.controller.model</groupId>
103       <artifactId>model-inventory</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.controller.model</groupId>
107       <artifactId>model-topology</artifactId>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.openflowplugin.applications</groupId>
111       <artifactId>topology-manager</artifactId>
112     </dependency>
113     <dependency>
114       <groupId>org.opendaylight.openflowplugin.applications</groupId>
115       <artifactId>topology-lldp-discovery</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>org.opendaylight.openflowplugin.applications</groupId>
119       <artifactId>statistics-manager</artifactId>
120     </dependency>
121     <dependency>
122       <groupId>org.opendaylight.openflowplugin.applications</groupId>
123       <artifactId>inventory-manager</artifactId>
124     </dependency>
125     <dependency>
126       <groupId>org.opendaylight.openflowplugin.applications</groupId>
127       <artifactId>forwardingrules-manager</artifactId>
128     </dependency>
129     <dependency>
130       <groupId>org.opendaylight.openflowplugin</groupId>
131       <artifactId>openflowplugin-common</artifactId>
132     </dependency>
133     <dependency>
134       <groupId>org.opendaylight.controller</groupId>
135       <artifactId>liblldp</artifactId>
136       <version>${lldp.version}</version>
137     </dependency>
138   </dependencies>
139
140   <scm>
141     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
142     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
143     <tag>HEAD</tag>
144     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
145   </scm>
146 </project>