Merge "API Usability: Introduced type capture for Transaction Factory"
[controller.git] / third-party / openflowj / pom.xml
1 <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/maven-v4_0_0.xsd">
2   <modelVersion>4.0.0</modelVersion>
3   <groupId>org.opendaylight.controller.thirdparty</groupId>
4   <artifactId>org.openflow.openflowj</artifactId>
5   <version>1.0.3-SNAPSHOT</version>
6   <name>OpenFlow Java</name>
7   <description>A Java implemention of the OpenFlow v1.0 protocol</description>
8
9   <!-- Get some common settings for the project we are using it in -->
10   <parent>
11     <groupId>org.opendaylight.controller</groupId>
12     <artifactId>commons.thirdparty</artifactId>
13     <version>1.1.1-SNAPSHOT</version>
14     <relativePath>../commons/thirdparty</relativePath>
15   </parent>
16   
17   <developers>
18     <developer>
19       <name>David Erickson</name>
20       <email>daviderickson@cs.stanford.edu</email>
21     </developer>
22     <developer>
23       <name>Rob Sherwood</name>
24       <email>rob.sherwood@stanford.edu</email>
25     </developer>
26   </developers>
27   <packaging>bundle</packaging>
28   <url>http://www.openflow.org</url>
29   <licenses>
30     <license>
31       <name>The OpenFlow License</name>
32       <url>http://www.openflowswitch.org/wp/legal/</url>
33       <distribution>repo</distribution>
34     </license>
35   </licenses>
36   <scm>
37     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
38     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
39     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
40     <tag>HEAD</tag>
41   </scm>
42   <properties>
43     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44   </properties>
45   <!-- For GPG release signing, use mvn release:perform -->
46   <profiles>
47     <profile>
48       <id>release-sign-artifacts</id>
49       <activation>
50         <!-- don't activate it -->
51         <!-- <property> -->
52         <!--   <name>performRelease</name> -->
53         <!--   <value>true</value> -->
54         <!-- </property> -->
55       </activation>
56       <build>
57         <plugins>
58           <plugin>
59             <groupId>org.apache.maven.plugins</groupId>
60             <artifactId>maven-gpg-plugin</artifactId>
61             <version>1.1</version>
62             <executions>
63               <execution>
64                 <id>sign-artifacts</id>
65                 <phase>verify</phase>
66                 <goals>
67                   <goal>sign</goal>
68                 </goals>
69               </execution>
70             </executions>
71             <configuration>
72               <mavenExecutorId>forked-path</mavenExecutorId>
73             </configuration>
74           </plugin>
75         </plugins>
76       </build>
77     </profile>
78   </profiles>
79
80   <build>
81     <plugins>
82       <plugin>
83         <groupId>org.apache.felix</groupId>
84         <artifactId>maven-bundle-plugin</artifactId>
85         <version>2.3.6</version>
86         <extensions>true</extensions>
87         <configuration>
88           <instructions>
89             <Export-Package>
90               org.openflow.example;version="1.0.1";
91               uses:="org.openflow.example.cli,
92               org.openflow.protocol,
93               org.openflow.io,
94               org.openflow.protocol.factory",
95               org.openflow.io;version="1.0.1";
96               uses:="org.openflow.protocol,
97               org.openflow.protocol.factory",
98               org.openflow.protocol;version="1.0.1";
99               uses:="org.openflow.protocol.statistics,
100               org.openflow.protocol,
101               org.openflow.protocol.factory",
102               org.openflow.protocol.action;version="1.0.1";
103               uses:="org.openflow.protocol",
104               org.openflow.protocol.factory;version="1.0.1";
105               uses:="org.openflow.protocol.statistics,
106               org.openflow.protocol,
107               org.openflow.protocol.action,
108               org.openflow.protocol.queue",
109               org.openflow.protocol.queue;version="1.0.2";
110               uses:="org.openflow.protocol,
111               org.openflow.protocol.factory",
112               org.openflow.protocol.statistics;version="1.0.1";
113               uses:="org.openflow.protocol,
114               org.openflow.protocol.factory",
115               org.openflow.util;version="1.0.1"
116             </Export-Package>
117           </instructions>
118           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
119         </configuration>
120       </plugin>
121       <plugin>
122         <groupId>org.apache.maven.plugins</groupId>
123         <artifactId>maven-compiler-plugin</artifactId>
124         <version>2.5.1</version>
125         <configuration>
126           <source>1.7</source>
127           <target>1.7</target>
128         </configuration>
129       </plugin>
130     </plugins>
131   </build>
132   <dependencies>
133     <dependency>
134       <groupId>junit</groupId>
135       <artifactId>junit</artifactId>
136       <version>4.8.1</version>
137       <scope>test</scope>
138     </dependency>
139   </dependencies>
140 </project>