Merge "Remove CSS artifact remnants"
[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         <controller.mdsal.version>1.7.0-SNAPSHOT</controller.mdsal.version>
25         <mdsal.version>2.4.0-SNAPSHOT</mdsal.version>
26         <mdsal.model.version>0.12.0-SNAPSHOT</mdsal.model.version>
27         <odlparent.netty>2.0.4</odlparent.netty>
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>odl-netty-4</artifactId>
46                 <version>${odlparent.netty}</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>mdsal-artifacts</artifactId>
72                 <version>${controller.mdsal.version}</version>
73                 <scope>import</scope>
74                 <type>pom</type>
75             </dependency>
76         </dependencies>
77     </dependencyManagement>
78
79
80     <dependencies>
81         <dependency>
82             <groupId>org.opendaylight.mdsal</groupId>
83             <artifactId>odl-mdsal-binding-base</artifactId>
84             <type>xml</type>
85             <classifier>features</classifier>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.mdsal.model</groupId>
89             <artifactId>odl-mdsal-models</artifactId>
90             <type>xml</type>
91             <classifier>features</classifier>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.controller</groupId>
95             <artifactId>odl-mdsal-common</artifactId>
96             <type>xml</type>
97             <classifier>features</classifier>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.odlparent</groupId>
101             <artifactId>odl-netty-4</artifactId>
102             <type>xml</type>
103             <classifier>features</classifier>
104         </dependency>
105         <!-- bundle dependencies -->
106         <dependency>
107             <groupId>${project.groupId}</groupId>
108             <artifactId>openflow-protocol-api</artifactId>
109         </dependency>
110         <dependency>
111             <groupId>${project.groupId}</groupId>
112             <artifactId>openflow-protocol-spi</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>${project.groupId}</groupId>
116             <artifactId>openflow-protocol-impl</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>${project.groupId}</groupId>
120             <artifactId>openflowjava-util</artifactId>
121         </dependency>
122         <!-- config files -->
123         <dependency>
124             <groupId>${project.groupId}</groupId>
125             <artifactId>openflowjava-blueprint-config</artifactId>
126             <type>xml</type>
127             <classifier>config</classifier>
128         </dependency>
129         <dependency>
130             <groupId>${project.groupId}</groupId>
131             <artifactId>openflowjava-blueprint-config</artifactId>
132             <type>xml</type>
133             <classifier>legacyConfig</classifier>
134         </dependency>
135     </dependencies>
136
137 </project>