176b6f8f0100decba550b7722a251707e160fc62
[controller.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   <groupId>org.opendaylight.controller.thirdparty</groupId>
5   <artifactId>org.openflow.openflowj_netty</artifactId>
6   <version>1.0.2-SNAPSHOT</version>
7   <name>OpenFlow Java</name>
8   <description>A Java implemention of the OpenFlow v1.0 protocol</description>
9
10   <!-- Get some common settings for the project we are using it in -->
11   <parent>
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>commons.thirdparty</artifactId>
14     <version>1.1.0-SNAPSHOT</version>
15     <relativePath>../commons/thirdparty</relativePath>
16   </parent>
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.example;version="1.0.1";
92               uses:="org.openflow.example.cli,
93               org.openflow.protocol,
94               org.openflow.io,
95               org.openflow.protocol.factory",
96               org.openflow.io;version="1.0.1";
97               uses:="org.openflow.protocol,
98               org.openflow.protocol.factory",
99               org.openflow.protocol;version="1.0.1";
100               uses:="org.openflow.protocol.statistics,
101               org.openflow.protocol,
102               org.openflow.protocol.factory",
103               org.openflow.protocol.action;version="1.0.1";
104               uses:="org.openflow.protocol",
105               org.openflow.protocol.factory;version="1.0.1";
106               uses:="org.openflow.protocol.statistics,
107               org.openflow.protocol,
108               org.openflow.protocol.action,
109               org.openflow.protocol.queue",
110               org.openflow.protocol.queue;version="1.0.2";
111               uses:="org.openflow.protocol,
112               org.openflow.protocol.factory",
113               org.openflow.protocol.statistics;version="1.0.1";
114               uses:="org.openflow.protocol,
115               org.openflow.protocol.factory",
116               org.openflow.util;version="1.0.1"
117             </Export-Package>
118         <Embed-Dependency>
119           org.jboss.netty;type=!pom;inline=false
120         </Embed-Dependency>         
121           </instructions>
122         </configuration>
123       </plugin>
124       <plugin>
125         <groupId>org.apache.maven.plugins</groupId>
126         <artifactId>maven-compiler-plugin</artifactId>
127         <version>2.3.2</version>
128         <configuration>
129           <source>1.6</source>
130           <target>1.6</target>
131         </configuration>
132       </plugin>
133     </plugins>
134   </build>
135   <dependencies>
136     <dependency>
137       <groupId>junit</groupId>
138       <artifactId>junit</artifactId>
139       <version>4.8.1</version>
140       <scope>test</scope>
141     </dependency>
142         <dependency>
143       <groupId>org.jboss.netty</groupId>
144       <artifactId>netty</artifactId>
145       <version>3.2.6.Final</version>
146     </dependency>
147     
148   </dependencies>
149 </project>