Andreas Wundsam | ac285ba | 2013-07-24 20:29:42 -0700 | [diff] [blame] | 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/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <groupId>org.openflow</groupId> |
| 6 | <artifactId>openflowj</artifactId> |
| 7 | <version>2.0-SNAPSHOT</version> |
| 8 | <packaging>jar</packaging> |
| 9 | |
| 10 | <name>Loxi-Generated OpenFlow/J</name> |
| 11 | <url>http://www.projectfloodlight.org/projects/</url> |
| 12 | |
| 13 | <properties> |
| 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | </properties> |
| 16 | |
| 17 | <dependencies> |
| 18 | <dependency> |
| 19 | <groupId>junit</groupId> |
| 20 | <artifactId>junit</artifactId> |
| 21 | <version>4.8.2</version> |
| 22 | <scope>test</scope> |
| 23 | </dependency> |
| 24 | <dependency> |
| 25 | <groupId>org.jboss.netty</groupId> |
| 26 | <artifactId>netty</artifactId> |
| 27 | <version>3.2.9.Final</version> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>com.google.guava</groupId> |
| 31 | <artifactId>guava</artifactId> |
| 32 | <version>14.0.1</version> |
| 33 | </dependency> |
| 34 | </dependencies> |
| 35 | <build> |
| 36 | <plugins> |
| 37 | <plugin> |
| 38 | <groupId>org.codehaus.mojo</groupId> |
| 39 | <artifactId>build-helper-maven-plugin</artifactId> |
| 40 | <version>1.8</version> |
| 41 | <executions> |
| 42 | <execution> |
| 43 | <phase>generate-sources</phase> |
| 44 | <goals><goal>add-source</goal></goals> |
| 45 | <configuration> |
| 46 | <sources> |
| 47 | <source>../../java_gen/pre-written/src/main/java/</source> |
| 48 | </sources> |
| 49 | </configuration> |
| 50 | </execution> |
| 51 | </executions> |
| 52 | </plugin> |
| 53 | </plugins> |
| 54 | </build> |
| 55 | </project> |