0b465b8d3fdf2108749d8d5ec4078812144821a0
[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" 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
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.odlparent</groupId>
7         <artifactId>single-feature-parent</artifactId>
8         <version>13.0.11</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.opendaylight.openflowplugin.openflowjava</groupId>
13     <artifactId>odl-openflowjava-protocol</artifactId>
14     <version>0.19.0-SNAPSHOT</version>
15     <packaging>feature</packaging>
16
17     <!-- <name> formatting is used by autorelease to parse and notify projects on
18          build failure. Please do not modify this unless you have a good reason. -->
19     <name>ODL :: openflowjava :: ${project.artifactId}</name>
20
21     <dependencyManagement>
22         <dependencies>
23             <!-- This project -->
24             <dependency>
25                 <groupId>org.opendaylight.openflowplugin</groupId>
26                 <artifactId>openflowplugin-artifacts</artifactId>
27                 <version>${project.version}</version>
28                 <scope>import</scope>
29                 <type>pom</type>
30             </dependency>
31
32             <!-- Infrautils -->
33             <dependency>
34                 <groupId>org.opendaylight.infrautils</groupId>
35                 <artifactId>infrautils-artifacts</artifactId>
36                 <version>6.0.6</version>
37                 <scope>import</scope>
38                 <type>pom</type>
39             </dependency>
40
41             <!-- YANG Tools -->
42             <dependency>
43                 <groupId>org.opendaylight.yangtools</groupId>
44                 <artifactId>yangtools-artifacts</artifactId>
45                 <version>13.0.2</version>
46                 <scope>import</scope>
47                 <type>pom</type>
48             </dependency>
49
50             <!-- MD-SAL -->
51             <dependency>
52                 <groupId>org.opendaylight.mdsal</groupId>
53                 <artifactId>mdsal-artifacts</artifactId>
54                 <version>13.0.1</version>
55                 <scope>import</scope>
56                 <type>pom</type>
57             </dependency>
58         </dependencies>
59     </dependencyManagement>
60
61
62     <dependencies>
63         <dependency>
64             <groupId>org.opendaylight.mdsal.model</groupId>
65             <artifactId>odl-mdsal-model-rfc6991</artifactId>
66             <type>xml</type>
67             <classifier>features</classifier>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.yangtools</groupId>
71             <artifactId>odl-yangtools-netty</artifactId>
72             <type>xml</type>
73             <classifier>features</classifier>
74         </dependency>
75         <dependency>
76             <groupId>org.opendaylight.infrautils</groupId>
77             <artifactId>odl-infrautils-diagstatus</artifactId>
78             <type>xml</type>
79             <classifier>features</classifier>
80         </dependency>
81         <!-- bundle dependencies -->
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>openflow-protocol-api</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>${project.groupId}</groupId>
88             <artifactId>openflow-protocol-spi</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>${project.groupId}</groupId>
92             <artifactId>openflow-protocol-impl</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>${project.groupId}</groupId>
96             <artifactId>openflowjava-util</artifactId>
97         </dependency>
98         <!-- config files -->
99         <dependency>
100             <groupId>${project.groupId}</groupId>
101             <artifactId>openflowjava-blueprint-config</artifactId>
102             <type>xml</type>
103             <classifier>config</classifier>
104         </dependency>
105         <dependency>
106             <groupId>${project.groupId}</groupId>
107             <artifactId>openflowjava-blueprint-config</artifactId>
108             <type>xml</type>
109             <classifier>legacyConfig</classifier>
110         </dependency>
111     </dependencies>
112
113 </project>