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 | |
Andreas Wundsam | baf058d | 2013-09-12 15:58:17 -0700 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>org.sonatype.oss</groupId> |
| 7 | <artifactId>oss-parent</artifactId> |
| 8 | <version>7</version> |
| 9 | </parent> |
| 10 | |
Andreas Wundsam | 11f6384 | 2013-09-10 18:01:43 -0700 | [diff] [blame] | 11 | <groupId>org.projectfloodlight</groupId> |
Andreas Wundsam | ac285ba | 2013-07-24 20:29:42 -0700 | [diff] [blame] | 12 | <artifactId>openflowj</artifactId> |
Andreas Wundsam | deb6bad | 2013-10-17 11:09:12 -0700 | [diff] [blame] | 13 | <version>0.3.0-SNAPSHOT</version> |
Andreas Wundsam | cbb7277 | 2013-09-10 18:17:41 -0700 | [diff] [blame] | 14 | <packaging>jar</packaging> |
Andreas Wundsam | ac285ba | 2013-07-24 20:29:42 -0700 | [diff] [blame] | 15 | |
Andreas Wundsam | baf058d | 2013-09-12 15:58:17 -0700 | [diff] [blame] | 16 | <name>OpenFlowJ-Loxi</name> |
| 17 | <description>OpenFlowJ API supporting OpenFlow versions 1.0 through 1.3.1, generated by LoxiGen</description> |
Andreas Wundsam | ac285ba | 2013-07-24 20:29:42 -0700 | [diff] [blame] | 18 | <url>http://www.projectfloodlight.org/projects/</url> |
Andreas Wundsam | baf058d | 2013-09-12 15:58:17 -0700 | [diff] [blame] | 19 | <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 Wundsam | ac285ba | 2013-07-24 20:29:42 -0700 | [diff] [blame] | 31 | |
| 32 | <properties> |
| 33 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 34 | </properties> |
| 35 | |
| 36 | <dependencies> |
| 37 | <dependency> |
xinwu | 3203443 | 2013-09-18 17:17:50 -0700 | [diff] [blame] | 38 | <groupId>com.google.code.findbugs</groupId> |
| 39 | <artifactId>annotations</artifactId> |
Rob Vaterlaus | 6d5832a | 2013-10-18 19:40:04 -0700 | [diff] [blame] | 40 | <version>2.0.2</version> |
xinwu | 3203443 | 2013-09-18 17:17:50 -0700 | [diff] [blame] | 41 | </dependency> |
| 42 | <dependency> |
Andreas Wundsam | ac285ba | 2013-07-24 20:29:42 -0700 | [diff] [blame] | 43 | <groupId>junit</groupId> |
| 44 | <artifactId>junit</artifactId> |
Rob Vaterlaus | 6d5832a | 2013-10-18 19:40:04 -0700 | [diff] [blame] | 45 | <version>4.11</version> |
Andreas Wundsam | ac285ba | 2013-07-24 20:29:42 -0700 | [diff] [blame] | 46 | <scope>test</scope> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.jboss.netty</groupId> |
| 50 | <artifactId>netty</artifactId> |
| 51 | <version>3.2.9.Final</version> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>com.google.guava</groupId> |
| 55 | <artifactId>guava</artifactId> |
Andreas Wundsam | 22ba3af | 2013-10-04 16:00:30 -0700 | [diff] [blame] | 56 | <version>15.0</version> |
Andreas Wundsam | ac285ba | 2013-07-24 20:29:42 -0700 | [diff] [blame] | 57 | </dependency> |
Andreas Wundsam | 70aa549 | 2013-10-23 15:26:53 -0700 | [diff] [blame] | 58 | <dependency> |
| 59 | <groupId>org.slf4j</groupId> |
| 60 | <artifactId>slf4j-api</artifactId> |
| 61 | <version>1.7.5</version> |
| 62 | </dependency> |
Andreas Wundsam | ac285ba | 2013-07-24 20:29:42 -0700 | [diff] [blame] | 63 | </dependencies> |
| 64 | <build> |
Andreas Wundsam | baf058d | 2013-09-12 15:58:17 -0700 | [diff] [blame] | 65 | <plugins> |
| 66 | <plugin> |
| 67 | <groupId>org.apache.maven.plugins</groupId> |
| 68 | <artifactId>maven-compiler-plugin</artifactId> |
| 69 | <version>3.1</version> |
Andreas Wundsam | ac285ba | 2013-07-24 20:29:42 -0700 | [diff] [blame] | 70 | <configuration> |
Andreas Wundsam | baf058d | 2013-09-12 15:58:17 -0700 | [diff] [blame] | 71 | <source>1.7</source> |
| 72 | <target>1.7</target> |
Andreas Wundsam | d458199 | 2013-09-11 11:12:58 -0700 | [diff] [blame] | 73 | </configuration> |
Andreas Wundsam | baf058d | 2013-09-12 15:58:17 -0700 | [diff] [blame] | 74 | </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 Wundsam | d458199 | 2013-09-11 11:12:58 -0700 | [diff] [blame] | 136 | <configuration> |
Andreas Wundsam | baf058d | 2013-09-12 15:58:17 -0700 | [diff] [blame] | 137 | <downloadSources>true</downloadSources> |
| 138 | <downloadJavadocs>true</downloadJavadocs> |
Andreas Wundsam | ac285ba | 2013-07-24 20:29:42 -0700 | [diff] [blame] | 139 | </configuration> |
Andreas Wundsam | baf058d | 2013-09-12 15:58:17 -0700 | [diff] [blame] | 140 | </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 Wundsam | ac285ba | 2013-07-24 20:29:42 -0700 | [diff] [blame] | 168 | </project> |