4c35f70567d759ea110883186492ac61d85d3f49
[openflowplugin.git] / openflowjava / features-openflowjava-aggregator / odl-openflowjava-protocol / 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
6     <modelVersion>4.0.0</modelVersion>
7     <parent>
8         <groupId>org.opendaylight.odlparent</groupId>
9         <artifactId>single-feature-parent</artifactId>
10         <version>2.0.4</version>
11         <relativePath/>
12     </parent>
13
14     <groupId>org.opendaylight.openflowplugin.openflowjava</groupId>
15     <artifactId>odl-openflowjava-protocol</artifactId>
16     <version>0.6.0-SNAPSHOT</version>
17     <packaging>feature</packaging>
18
19     <!-- <name> formatting is used by autorelease to parse and notify projects on
20          build failure. Please do not modify this unless you have a good reason. -->
21     <name>ODL :: openflowjava :: ${project.artifactId}</name>
22
23     <properties>
24         <config.version>0.8.0-SNAPSHOT</config.version>
25         <controller.mdsal.version>1.7.0-SNAPSHOT</controller.mdsal.version>
26         <mdsal.version>2.4.0-SNAPSHOT</mdsal.version>
27         <mdsal.model.version>0.12.0-SNAPSHOT</mdsal.model.version>
28     </properties>
29
30
31     <dependencyManagement>
32         <dependencies>
33             <!-- This project -->
34             <dependency>
35                 <groupId>org.opendaylight.openflowplugin</groupId>
36                 <artifactId>openflowplugin-artifacts</artifactId>
37                 <version>${project.version}</version>
38                 <scope>import</scope>
39                 <type>pom</type>
40             </dependency>
41
42             <!-- Netty -->
43             <dependency>
44                 <groupId>org.opendaylight.odlparent</groupId>
45                 <artifactId>odlparent-artifacts</artifactId>
46                 <version>2.0.4</version>
47                 <scope>import</scope>
48                 <type>pom</type>
49             </dependency>
50
51             <!-- MD-SAL -->
52             <dependency>
53                 <groupId>org.opendaylight.mdsal</groupId>
54                 <artifactId>mdsal-artifacts</artifactId>
55                 <version>${mdsal.version}</version>
56                 <scope>import</scope>
57                 <type>pom</type>
58             </dependency>
59
60             <dependency>
61                 <groupId>org.opendaylight.mdsal.model</groupId>
62                 <artifactId>mdsal-model-artifacts</artifactId>
63                 <version>${mdsal.model.version}</version>
64                 <scope>import</scope>
65                 <type>pom</type>
66             </dependency>
67
68             <!-- Controller infrastructure -->
69             <dependency>
70                 <groupId>org.opendaylight.controller</groupId>
71                 <artifactId>config-artifacts</artifactId>
72                 <version>${config.version}</version>
73                 <scope>import</scope>
74                 <type>pom</type>
75             </dependency>
76             <dependency>
77                 <groupId>org.opendaylight.controller</groupId>
78                 <artifactId>mdsal-artifacts</artifactId>
79                 <version>${controller.mdsal.version}</version>
80                 <scope>import</scope>
81                 <type>pom</type>
82             </dependency>
83         </dependencies>
84     </dependencyManagement>
85
86
87     <dependencies>
88         <dependency>
89             <groupId>org.opendaylight.mdsal</groupId>
90             <artifactId>odl-mdsal-binding-base</artifactId>
91             <type>xml</type>
92             <classifier>features</classifier>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.mdsal.model</groupId>
96             <artifactId>odl-mdsal-models</artifactId>
97             <type>xml</type>
98             <classifier>features</classifier>
99         </dependency>
100         <dependency>
101             <groupId>org.opendaylight.controller</groupId>
102             <artifactId>odl-config-api</artifactId>
103             <type>xml</type>
104             <classifier>features</classifier>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.controller</groupId>
108             <artifactId>odl-mdsal-common</artifactId>
109             <type>xml</type>
110             <classifier>features</classifier>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.odlparent</groupId>
114             <artifactId>odl-netty-4</artifactId>
115             <type>xml</type>
116             <classifier>features</classifier>
117         </dependency>
118         <!-- bundle dependencies -->
119         <dependency>
120             <groupId>${project.groupId}</groupId>
121             <artifactId>openflow-protocol-api</artifactId>
122         </dependency>
123         <dependency>
124             <groupId>${project.groupId}</groupId>
125             <artifactId>openflow-protocol-spi</artifactId>
126         </dependency>
127         <dependency>
128             <groupId>${project.groupId}</groupId>
129             <artifactId>openflow-protocol-impl</artifactId>
130         </dependency>
131         <dependency>
132             <groupId>${project.groupId}</groupId>
133             <artifactId>openflowjava-util</artifactId>
134         </dependency>
135         <!-- config files -->
136         <dependency>
137             <groupId>${project.groupId}</groupId>
138             <artifactId>openflowjava-blueprint-config</artifactId>
139             <type>xml</type>
140             <classifier>config</classifier>
141         </dependency>
142         <dependency>
143             <groupId>${project.groupId}</groupId>
144             <artifactId>openflowjava-blueprint-config</artifactId>
145             <type>xml</type>
146             <classifier>legacyConfig</classifier>
147         </dependency>
148     </dependencies>
149
150 </project>