blob: 45047669d1a232ec315143023af0afb02deead67 [file] [log] [blame]
Andreas Wundsamac285ba2013-07-24 20:29:42 -07001<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/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
Andreas Wundsambaf058d2013-09-12 15:58:17 -07005 <parent>
6 <groupId>org.sonatype.oss</groupId>
7 <artifactId>oss-parent</artifactId>
8 <version>7</version>
9 </parent>
10
Andreas Wundsam11f63842013-09-10 18:01:43 -070011 <groupId>org.projectfloodlight</groupId>
Andreas Wundsamac285ba2013-07-24 20:29:42 -070012 <artifactId>openflowj</artifactId>
Andreas Wundsambaf058d2013-09-12 15:58:17 -070013 <version>0.1.0-SNAPSHOT</version>
Andreas Wundsamcbb72772013-09-10 18:17:41 -070014 <packaging>jar</packaging>
Andreas Wundsamac285ba2013-07-24 20:29:42 -070015
Andreas Wundsambaf058d2013-09-12 15:58:17 -070016 <name>OpenFlowJ-Loxi</name>
17 <description>OpenFlowJ API supporting OpenFlow versions 1.0 through 1.3.1, generated by LoxiGen</description>
Andreas Wundsamac285ba2013-07-24 20:29:42 -070018 <url>http://www.projectfloodlight.org/projects/</url>
Andreas Wundsambaf058d2013-09-12 15:58:17 -070019 <licenses>
20 <license>
21 <name>The Apache Software License, Version 2.0</name>
22 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
23 <distribution>repo</distribution>
24 </license>
25 </licenses>
26 <scm>
27 <connection>scm:git:git@github.com:floodlight/loxigen.git</connection>
28 <developerConnection>scm:git:git@github.com:floodlight/loxigen.git</developerConnection>
29 <url>git@github.com:floodlight/loxigen.git</url>
30 </scm>
Andreas Wundsamac285ba2013-07-24 20:29:42 -070031
32 <properties>
33 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34 </properties>
35
36 <dependencies>
37 <dependency>
xinwu32034432013-09-18 17:17:50 -070038 <groupId>com.google.code.findbugs</groupId>
39 <artifactId>annotations</artifactId>
40 <version>2.0.1</version>
41 </dependency>
42 <dependency>
43 <groupId>com.google.code.findbugs</groupId>
44 <artifactId>annotations</artifactId>
45 <version>2.0.1</version>
46 </dependency>
47 <dependency>
Andreas Wundsamac285ba2013-07-24 20:29:42 -070048 <groupId>junit</groupId>
49 <artifactId>junit</artifactId>
50 <version>4.8.2</version>
51 <scope>test</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.jboss.netty</groupId>
55 <artifactId>netty</artifactId>
56 <version>3.2.9.Final</version>
57 </dependency>
58 <dependency>
59 <groupId>com.google.guava</groupId>
60 <artifactId>guava</artifactId>
61 <version>14.0.1</version>
62 </dependency>
63 </dependencies>
64 <build>
Andreas Wundsambaf058d2013-09-12 15:58:17 -070065 <plugins>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-compiler-plugin</artifactId>
69 <version>3.1</version>
Andreas Wundsamac285ba2013-07-24 20:29:42 -070070 <configuration>
Andreas Wundsambaf058d2013-09-12 15:58:17 -070071 <source>1.7</source>
72 <target>1.7</target>
Andreas Wundsamd4581992013-09-11 11:12:58 -070073 </configuration>
Andreas Wundsambaf058d2013-09-12 15:58:17 -070074 </plugin>
75 <plugin>
76 <!-- pick up sources from gen-src -->
77 <groupId>org.codehaus.mojo</groupId>
78 <artifactId>build-helper-maven-plugin</artifactId>
79 <version>1.8</version>
80 <executions>
81 <execution>
82 <id>gen-src-add-source</id>
83 <phase>generate-sources</phase>
84 <goals><goal>add-source</goal></goals>
85 <configuration>
86 <sources>
87 <source>gen-src/main/java</source>
88 </sources>
89 </configuration>
90 </execution>
91 <execution>
92 <id>add-gen-src-test-source</id>
93 <!-- note: purposefully not using phase generate-test-sources, because that is not picked up by eclipse:eclipse -->
94 <phase>validate</phase>
95 <goals><goal>add-test-source</goal></goals>
96 <configuration>
97 <sources>
98 <source>gen-src/test/java</source>
99 </sources>
100 </configuration>
101 </execution>
102 </executions>
103 </plugin>
104 <!-- attach sources -->
105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-source-plugin</artifactId>
108 <version>2.2.1</version>
109 <executions>
110 <execution>
111 <id>attach-sources</id>
112 <goals>
113 <goal>jar</goal>
114 </goals>
115 </execution>
116 </executions>
117 </plugin>
118 <!-- attach javadoc -->
119 <plugin>
120 <groupId>org.apache.maven.plugins</groupId>
121 <artifactId>maven-javadoc-plugin</artifactId>
122 <version>2.9.1</version>
123 <executions>
124 <execution>
125 <id>attach-javadocs</id>
126 <goals>
127 <goal>jar</goal>
128 </goals>
129 </execution>
130 </executions>
131 </plugin>
132 <plugin>
133 <groupId>org.apache.maven.plugins</groupId>
134 <artifactId>maven-eclipse-plugin</artifactId>
135 <version>2.9</version>
Andreas Wundsamd4581992013-09-11 11:12:58 -0700136 <configuration>
Andreas Wundsambaf058d2013-09-12 15:58:17 -0700137 <downloadSources>true</downloadSources>
138 <downloadJavadocs>true</downloadJavadocs>
Andreas Wundsamac285ba2013-07-24 20:29:42 -0700139 </configuration>
Andreas Wundsambaf058d2013-09-12 15:58:17 -0700140 </plugin>
141 <!--
142 <plugin>
143 <groupId>org.apache.maven.plugins</groupId>
144 <artifactId>maven-gpg-plugin</artifactId>
145 <version>1.4</version>
146 <executions>
147 <execution>
148 <id>sign-artifacts</id>
149 <phase>verify</phase>
150 <goals>
151 <goal>sign</goal>
152 </goals>
153 </execution>
154 </executions>
155 </plugin>
156 -->
157 </plugins>
158 <resources>
159 <resource>
160 <directory>${basedir}</directory>
161 <filtering>false</filtering>
162 <includes>
163 <include>LICENSE.txt</include>
164 </includes>
165 </resource>
166 </resources>
167 </build>
Andreas Wundsamac285ba2013-07-24 20:29:42 -0700168</project>