Merge "Remove public from interface methods. Cleans sonar warnings."
[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:ssh://git.opendaylight.org:29418/controller.git</connection>
39     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
40     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
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.3.2</version>
125         <configuration>
126           <source>1.6</source>
127           <target>1.6</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>