Release Carbon
[openflowjava.git] / openflow-protocol-api / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2     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.mdsal</groupId>
6         <artifactId>binding-parent</artifactId>
7         <version>0.10.0-Carbon</version>
8         <relativePath/>
9     </parent>
10     <groupId>org.opendaylight.openflowjava</groupId>
11     <artifactId>openflow-protocol-api</artifactId>
12     <version>0.9.0-Carbon</version>
13     <packaging>bundle</packaging>
14     <name>Openflow Protocol Library - API</name>
15     <scm>
16         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
17         <tag>HEAD</tag>
18     </scm>
19
20     <properties>
21       <mdsal.version>2.2.0-Carbon</mdsal.version>
22       <mdsal.model.version>0.10.0-Carbon</mdsal.model.version>
23     </properties>
24
25     <dependencyManagement>
26       <dependencies>
27       <!-- MD-SAL -->
28         <dependency>
29           <groupId>org.opendaylight.mdsal</groupId>
30           <artifactId>mdsal-artifacts</artifactId>
31           <version>${mdsal.version}</version>
32           <scope>import</scope>
33           <type>pom</type>
34         </dependency>
35
36         <dependency>
37           <groupId>org.opendaylight.mdsal.model</groupId>
38           <artifactId>mdsal-model-artifacts</artifactId>
39           <version>${mdsal.model.version}</version>
40           <scope>import</scope>
41           <type>pom</type>
42         </dependency>
43       </dependencies>
44     </dependencyManagement>
45
46     <dependencies>
47         <dependency>
48             <groupId>org.opendaylight.mdsal</groupId>
49             <artifactId>yang-binding</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.yangtools</groupId>
53             <artifactId>yang-common</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal.model</groupId>
57             <artifactId>ietf-inet-types-2013-07-15</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.mdsal.model</groupId>
61             <artifactId>ietf-yang-types-20130715</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.mdsal.model</groupId>
65             <artifactId>yang-ext</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>io.netty</groupId>
69             <artifactId>netty-buffer</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>junit</groupId>
73             <artifactId>junit</artifactId>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.mockito</groupId>
78             <artifactId>mockito-core</artifactId>
79         </dependency>
80     </dependencies>
81 </project>