- Removed sitebuildsettings, the deployment of this and manteinance in
[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"
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</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             <Export-Package>
88               org.openflow.example;version="1.0.1";
89               uses:="org.openflow.example.cli,
90               org.openflow.protocol,
91               org.openflow.io,
92               org.openflow.protocol.factory",
93               org.openflow.io;version="1.0.1";
94               uses:="org.openflow.protocol,
95               org.openflow.protocol.factory",
96               org.openflow.protocol;version="1.0.1";
97               uses:="org.openflow.protocol.statistics,
98               org.openflow.protocol,
99               org.openflow.protocol.factory",
100               org.openflow.protocol.action;version="1.0.1";
101               uses:="org.openflow.protocol",
102               org.openflow.protocol.factory;version="1.0.1";
103               uses:="org.openflow.protocol.statistics,
104               org.openflow.protocol,
105               org.openflow.protocol.action,
106               org.openflow.protocol.queue",
107               org.openflow.protocol.queue;version="1.0.2";
108               uses:="org.openflow.protocol,
109               org.openflow.protocol.factory",
110               org.openflow.protocol.statistics;version="1.0.1";
111               uses:="org.openflow.protocol,
112               org.openflow.protocol.factory",
113               org.openflow.util;version="1.0.1"
114             </Export-Package>
115           </instructions>
116         </configuration>
117       </plugin>
118       <plugin>
119         <groupId>org.apache.maven.plugins</groupId>
120         <artifactId>maven-compiler-plugin</artifactId>
121         <version>2.3.2</version>
122         <configuration>
123           <source>1.6</source>
124           <target>1.6</target>
125         </configuration>
126       </plugin>
127     </plugins>
128   </build>
129   <dependencies>
130     <dependency>
131       <groupId>junit</groupId>
132       <artifactId>junit</artifactId>
133       <version>4.8.1</version>
134       <scope>test</scope>
135     </dependency>
136   </dependencies>
137 </project>