Add method to register listener for unknown msg
[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.11.0-SNAPSHOT</version>
8         <relativePath/>
9     </parent>
10     <groupId>org.opendaylight.openflowjava</groupId>
11     <artifactId>openflow-protocol-api</artifactId>
12     <version>0.10.0-SNAPSHOT</version>
13     <packaging>bundle</packaging>
14     <!-- <name> formatting is used by autorelease to parse and notify projects on
15          build failure. Please do not modify this unless you have a good reason. -->
16     <name>ODL :: openflowjava :: ${project.artifactId}</name>
17     <scm>
18         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
19         <tag>HEAD</tag>
20     </scm>
21
22     <properties>
23       <mdsal.version>2.3.0-SNAPSHOT</mdsal.version>
24       <mdsal.model.version>0.11.0-SNAPSHOT</mdsal.model.version>
25     </properties>
26
27     <dependencyManagement>
28       <dependencies>
29       <!-- MD-SAL -->
30         <dependency>
31           <groupId>org.opendaylight.mdsal</groupId>
32           <artifactId>mdsal-artifacts</artifactId>
33           <version>${mdsal.version}</version>
34           <scope>import</scope>
35           <type>pom</type>
36         </dependency>
37
38         <dependency>
39           <groupId>org.opendaylight.mdsal.model</groupId>
40           <artifactId>mdsal-model-artifacts</artifactId>
41           <version>${mdsal.model.version}</version>
42           <scope>import</scope>
43           <type>pom</type>
44         </dependency>
45       </dependencies>
46     </dependencyManagement>
47
48     <dependencies>
49         <dependency>
50             <groupId>org.opendaylight.mdsal</groupId>
51             <artifactId>yang-binding</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.yangtools</groupId>
55             <artifactId>yang-common</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.mdsal.model</groupId>
59             <artifactId>ietf-inet-types-2013-07-15</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.mdsal.model</groupId>
63             <artifactId>ietf-yang-types-20130715</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.mdsal.model</groupId>
67             <artifactId>yang-ext</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>io.netty</groupId>
71             <artifactId>netty-buffer</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>junit</groupId>
75             <artifactId>junit</artifactId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.mockito</groupId>
80             <artifactId>mockito-core</artifactId>
81         </dependency>
82     </dependencies>
83 </project>