Add method to register listener for unknown msg
[openflowjava.git] / third-party / openflowj_netty / 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/maven-v4_0_0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <!-- Get some common settings for the project we are using it in -->
5   <parent>
6     <groupId>org.opendaylight.openflowjava</groupId>
7     <artifactId>openflow-protocol-parent</artifactId>
8     <version>0.1-SNAPSHOT</version>
9     <relativePath>../../</relativePath>
10   </parent>
11   <groupId>org.opendaylight.openflowjava.thirdparty</groupId>
12   <artifactId>org.openflow.openflowj_netty</artifactId>
13   <version>1.0.2-SNAPSHOT</version>
14   <name>OpenFlow Java</name>
15   <description>A Java implemention of the OpenFlow v1.0 protocol</description>
16   
17   
18   <developers>
19     <developer>
20       <name>David Erickson</name>
21       <email>daviderickson@cs.stanford.edu</email>
22     </developer>
23     <developer>
24       <name>Rob Sherwood</name>
25       <email>rob.sherwood@stanford.edu</email>
26     </developer>
27   </developers>
28   <packaging>bundle</packaging>
29   <url>http://www.openflow.org</url>
30   <licenses>
31     <license>
32       <name>The OpenFlow License</name>
33       <url>http://www.openflowswitch.org/wp/legal/</url>
34       <distribution>repo</distribution>
35     </license>
36   </licenses>
37   <scm>
38     <connection>scm:git://gitosis.stanford.edu:openflowj.git</connection>
39     <url>https://openflow.stanford.edu/fisheye/browse/OpenFlowJ</url>
40   </scm>
41   <properties>
42     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
43   </properties>
44   <!-- For GPG release signing, use mvn release:perform -->
45   <profiles>
46     <profile>
47       <id>release-sign-artifacts</id>
48       <activation>
49         <property>
50           <name>performRelease</name>
51           <value>true</value>
52         </property>
53       </activation>
54       <build>
55         <plugins>
56           <plugin>
57             <groupId>org.apache.maven.plugins</groupId>
58             <artifactId>maven-gpg-plugin</artifactId>
59             <version>1.1</version>
60             <executions>
61               <execution>
62                 <id>sign-artifacts</id>
63                 <phase>verify</phase>
64                 <goals>
65                   <goal>sign</goal>
66                 </goals>
67               </execution>
68             </executions>
69             <configuration>
70               <mavenExecutorId>forked-path</mavenExecutorId>
71             </configuration>
72           </plugin>
73         </plugins>
74       </build>
75     </profile>
76   </profiles>
77
78   <build>
79     <plugins>
80     <plugin>
81         <groupId>org.apache.felix</groupId>
82         <artifactId>maven-bundle-plugin</artifactId>
83         <version>2.3.6</version>
84         <extensions>true</extensions>
85         <configuration>
86           <instructions>
87                 <Import-Package>
88                   org.jboss.netty.*
89                 </Import-Package>
90             <Export-Package>
91               org.openflow.*
92             </Export-Package>
93           </instructions>
94         </configuration>
95       </plugin>
96       <plugin>
97         <groupId>org.apache.maven.plugins</groupId>
98         <artifactId>maven-compiler-plugin</artifactId>
99         <version>2.3.2</version>
100         <configuration>
101           <source>1.6</source>
102           <target>1.6</target>
103         </configuration>
104       </plugin>
105     </plugins>
106   </build>
107   <dependencies>
108     <dependency>
109       <groupId>junit</groupId>
110       <artifactId>junit</artifactId>
111       <version>4.8.1</version>
112       <scope>test</scope>
113     </dependency>
114     <dependency>
115       <groupId>org.jboss.netty</groupId>
116       <artifactId>netty</artifactId>
117       <version>3.2.6.Final</version>
118     </dependency>
119   </dependencies>
120 </project>