HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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 | <prerequisites> |
| 5 | <maven>3.0.4</maven> |
| 6 | </prerequisites> |
| 7 | <groupId>net.onrc.onos</groupId> |
HIGUCHI Yuta | 1ec484a | 2013-06-06 15:34:01 -0700 | [diff] [blame] | 8 | <artifactId>ONOS</artifactId> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 9 | <version>0.1.0</version> |
| 10 | <packaging>jar</packaging> |
HIGUCHI Yuta | 1ec484a | 2013-06-06 15:34:01 -0700 | [diff] [blame] | 11 | <name>ONOS</name> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 12 | <url>http://onlab.us/</url> |
| 13 | <repositories> |
| 14 | <repository> |
| 15 | <id>central</id> |
| 16 | <name>Maven Central repository</name> |
| 17 | <url>http://repo1.maven.org/maven2</url> |
| 18 | </repository> |
| 19 | <repository> |
| 20 | <id>maven-restlet</id> |
| 21 | <name>Public online Restlet repository</name> |
| 22 | <url>http://maven.restlet.org</url> |
| 23 | </repository> |
| 24 | <repository> |
| 25 | <id>tinkerpop-repository</id> |
| 26 | <name>TinkerPop Maven2 Repository</name> |
| 27 | <url>http://tinkerpop.com/maven2</url> |
| 28 | </repository> |
| 29 | </repositories> |
| 30 | <properties> |
| 31 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
HIGUCHI Yuta | e4b0722 | 2013-06-08 02:17:30 -0700 | [diff] [blame] | 32 | <powermock.version>1.5</powermock.version> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 33 | <restlet.version>2.1-RC1</restlet.version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 34 | </properties> |
| 35 | <build> |
| 36 | <plugins> |
| 37 | <plugin> |
| 38 | <groupId>org.apache.maven.plugins</groupId> |
| 39 | <artifactId>maven-install-plugin</artifactId> |
| 40 | <version>2.3.1</version> |
| 41 | <executions> |
| 42 | </executions> |
| 43 | </plugin> |
| 44 | <!-- guice maven plugin for dependency injection inside maven --> |
| 45 | <plugin> |
| 46 | <groupId>org.apache.camel</groupId> |
| 47 | <artifactId>guice-maven-plugin</artifactId> |
| 48 | <version>2.11.0</version> |
| 49 | </plugin> |
| 50 | <!-- compile --> |
| 51 | <plugin> |
| 52 | <groupId>org.apache.maven.plugins</groupId> |
| 53 | <artifactId>maven-compiler-plugin</artifactId> |
| 54 | <version>2.3.2</version> |
| 55 | <configuration> |
| 56 | <source>1.6</source> |
| 57 | <target>1.6</target> |
| 58 | <encoding>UTF-8</encoding> |
| 59 | </configuration> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 60 | <executions> |
| 61 | </executions> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 62 | </plugin> |
| 63 | <!-- test --> |
| 64 | <plugin> |
| 65 | <groupId>org.apache.maven.plugins</groupId> |
| 66 | <artifactId>maven-surefire-plugin</artifactId> |
| 67 | <version>2.12</version> |
| 68 | <configuration> |
| 69 | <excludes> |
| 70 | <!-- exclude all test cases for now --> |
| 71 | <!-- <exclude>**/storage/tests/StorageTest.java</exclude> --> |
| 72 | <!-- <exclude>**/test/*</exclude> --> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 73 | <!-- |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 74 | <exclude>**/test/*</exclude> |
| 75 | <exclude>**/Test*.java</exclude> |
| 76 | <exclude>**/*Test.java</exclude> |
| 77 | <exclude>**/*TestCase.java</exclude> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 78 | --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 79 | </excludes> |
| 80 | </configuration> |
| 81 | </plugin> |
| 82 | <!-- exec:java --> |
| 83 | <plugin> |
| 84 | <groupId>org.codehaus.mojo</groupId> |
| 85 | <artifactId>exec-maven-plugin</artifactId> |
| 86 | <version>1.2.1</version> |
| 87 | <configuration> |
| 88 | <mainClass>net.floodlightcontroller.core.Main</mainClass> |
| 89 | </configuration> |
| 90 | <executions> |
| 91 | </executions> |
| 92 | </plugin> |
Jonathan Hart | 72f72f6 | 2013-06-12 09:54:19 +1200 | [diff] [blame] | 93 | <!--<plugin> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 94 | <groupId>org.codehaus.mojo</groupId> |
| 95 | <artifactId>build-helper-maven-plugin</artifactId> |
| 96 | <version>1.7</version> |
| 97 | <executions> |
| 98 | <execution> |
| 99 | <id>add-source</id> |
| 100 | <phase>generate-sources</phase> |
| 101 | <goals> |
| 102 | <goal>add-source</goal> |
| 103 | </goals> |
| 104 | <configuration> |
| 105 | <sources> |
| 106 | <source>lib/gen-java</source> |
| 107 | </sources> |
| 108 | </configuration> |
| 109 | </execution> |
| 110 | </executions> |
Jonathan Hart | 72f72f6 | 2013-06-12 09:54:19 +1200 | [diff] [blame] | 111 | </plugin>--> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 112 | </plugins> |
| 113 | </build> |
| 114 | <!-- for getting visualization reporting --> |
| 115 | <reporting> |
| 116 | <plugins> |
| 117 | <plugin> |
| 118 | <groupId>org.apache.camel</groupId> |
| 119 | <artifactId>guice-maven-plugin</artifactId> |
| 120 | <version>2.11.0</version> |
| 121 | </plugin> |
| 122 | </plugins> |
| 123 | </reporting> |
| 124 | <dependencies> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 125 | <!-- ONOS's direct dependencies --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 126 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 127 | <groupId>org.apache.cassandra</groupId> |
| 128 | <artifactId>apache-cassandra</artifactId> |
| 129 | <version>1.2.4</version> |
| 130 | <type>pom</type> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 131 | </dependency> |
| 132 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 133 | <groupId>com.thinkaurelius.titan</groupId> |
| 134 | <artifactId>titan-all</artifactId> |
| 135 | <version>0.2.1</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 136 | </dependency> |
| 137 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 138 | <groupId>com.tinkerpop</groupId> |
| 139 | <artifactId>frames</artifactId> |
| 140 | <version>2.3.1</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 141 | </dependency> |
HIGUCHI Yuta | e4b0722 | 2013-06-08 02:17:30 -0700 | [diff] [blame] | 142 | <!-- |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 143 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 144 | <groupId>com.tinkerpop.blueprints</groupId> |
| 145 | <artifactId>blueprints-core</artifactId> |
| 146 | <version>2.3.0</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 147 | </dependency> |
HIGUCHI Yuta | e4b0722 | 2013-06-08 02:17:30 -0700 | [diff] [blame] | 148 | --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 149 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 150 | <groupId>net.sf.json-lib</groupId> |
| 151 | <artifactId>json-lib</artifactId> |
| 152 | <version>2.4</version> |
| 153 | <classifier>jdk15</classifier> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 154 | </dependency> |
| 155 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 156 | <groupId>org.restlet.jse</groupId> |
| 157 | <artifactId>org.restlet</artifactId> |
| 158 | <version>${restlet.version}</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 159 | </dependency> |
| 160 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 161 | <groupId>org.restlet.jse</groupId> |
| 162 | <artifactId>org.restlet.ext.slf4j</artifactId> |
| 163 | <version>${restlet.version}</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 164 | </dependency> |
| 165 | <dependency> |
| 166 | <groupId>org.codehaus.jackson</groupId> |
| 167 | <artifactId>jackson-core-asl</artifactId> |
| 168 | <version>1.9.11</version> |
| 169 | </dependency> |
| 170 | <dependency> |
| 171 | <groupId>org.codehaus.jackson</groupId> |
| 172 | <artifactId>jackson-mapper-asl</artifactId> |
| 173 | <version>1.9.11</version> |
| 174 | </dependency> |
| 175 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 176 | <groupId>ch.qos.logback</groupId> |
| 177 | <artifactId>logback-core</artifactId> |
| 178 | <version>1.0.0</version> |
| 179 | </dependency> |
| 180 | <dependency> |
| 181 | <groupId>ch.qos.logback</groupId> |
| 182 | <artifactId>logback-classic</artifactId> |
| 183 | <version>1.0.0</version> |
| 184 | <scope>runtime</scope> |
| 185 | </dependency> |
| 186 | <!-- Floodlight's dependencies --> |
| 187 | <dependency> |
| 188 | <groupId>net.sourceforge.cobertura</groupId> |
| 189 | <artifactId>cobertura</artifactId> |
| 190 | <version>1.9.4.1</version> |
| 191 | </dependency> |
| 192 | <!-- |
| 193 | <dependency> |
| 194 | <groupId>com.google.guava</groupId> |
| 195 | <artifactId>guava</artifactId> |
| 196 | <version>13.0.1</version> |
| 197 | </dependency> |
| 198 | --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 199 | <dependency> |
| 200 | <groupId>org.slf4j</groupId> |
| 201 | <artifactId>slf4j-api</artifactId> |
| 202 | <version>1.6.4</version> |
| 203 | </dependency> |
| 204 | <dependency> |
| 205 | <groupId>org.restlet.jse</groupId> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 206 | <artifactId>org.restlet.ext.jackson</artifactId> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 207 | <version>${restlet.version}</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 208 | </dependency> |
| 209 | <dependency> |
| 210 | <groupId>org.restlet.jse</groupId> |
| 211 | <artifactId>org.restlet.ext.simple</artifactId> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 212 | <version>${restlet.version}</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 213 | </dependency> |
| 214 | <dependency> |
| 215 | <groupId>org.simpleframework</groupId> |
| 216 | <artifactId>simple</artifactId> |
| 217 | <version>4.1.21</version> |
| 218 | </dependency> |
| 219 | <dependency> |
| 220 | <groupId>org.jboss.netty</groupId> |
| 221 | <artifactId>netty</artifactId> |
| 222 | <version>3.2.6.Final</version> |
| 223 | </dependency> |
| 224 | <dependency> |
| 225 | <groupId>args4j</groupId> |
| 226 | <artifactId>args4j</artifactId> |
| 227 | <version>2.0.16</version> |
| 228 | </dependency> |
| 229 | <dependency> |
| 230 | <groupId>com.googlecode.concurrentlinkedhashmap</groupId> |
| 231 | <artifactId>concurrentlinkedhashmap-lru</artifactId> |
HIGUCHI Yuta | e4b0722 | 2013-06-08 02:17:30 -0700 | [diff] [blame] | 232 | <version>1.3</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 233 | </dependency> |
Jonathan Hart | a37f9c3 | 2013-06-12 09:13:58 +1200 | [diff] [blame] | 234 | <!--<dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 235 | <groupId>org.python</groupId> |
| 236 | <artifactId>jython-standalone</artifactId> |
| 237 | <version>2.5.2</version> |
Jonathan Hart | a37f9c3 | 2013-06-12 09:13:58 +1200 | [diff] [blame] | 238 | </dependency>--> |
Jonathan Hart | 72f72f6 | 2013-06-12 09:54:19 +1200 | [diff] [blame] | 239 | <!--<dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 240 | <groupId>org.apache.thrift</groupId> |
| 241 | <artifactId>libthrift</artifactId> |
| 242 | <version>0.7.0</version> |
Jonathan Hart | 72f72f6 | 2013-06-12 09:54:19 +1200 | [diff] [blame] | 243 | </dependency>--> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 244 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 245 | <groupId>com.google.inject</groupId> |
| 246 | <artifactId>guice</artifactId> |
| 247 | <version>3.0</version> |
| 248 | </dependency> |
| 249 | <!-- Dependency for libraries used for testing --> |
| 250 | <dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 251 | <groupId>junit</groupId> |
| 252 | <artifactId>junit</artifactId> |
HIGUCHI Yuta | e4b0722 | 2013-06-08 02:17:30 -0700 | [diff] [blame] | 253 | <version>4.11</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 254 | <scope>test</scope> |
| 255 | </dependency> |
| 256 | <dependency> |
| 257 | <groupId>org.easymock</groupId> |
| 258 | <artifactId>easymock</artifactId> |
| 259 | <version>3.1</version> |
| 260 | <scope>test</scope> |
| 261 | </dependency> |
| 262 | <dependency> |
HIGUCHI Yuta | e4b0722 | 2013-06-08 02:17:30 -0700 | [diff] [blame] | 263 | <groupId>org.powermock</groupId> |
| 264 | <artifactId>powermock-module-junit4</artifactId> |
| 265 | <version>${powermock.version}</version> |
| 266 | <scope>test</scope> |
| 267 | </dependency> |
| 268 | <dependency> |
| 269 | <groupId>org.powermock</groupId> |
| 270 | <artifactId>powermock-api-easymock</artifactId> |
| 271 | <version>${powermock.version}</version> |
| 272 | <scope>test</scope> |
| 273 | </dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 274 | <!-- |
| 275 | <dependency> |
| 276 | <groupId>org.objenesis</groupId> |
| 277 | <artifactId>objenesis</artifactId> |
| 278 | <version>1.2</version> |
| 279 | <scope>test</scope> |
| 280 | </dependency> |
HIGUCHI Yuta | e4b0722 | 2013-06-08 02:17:30 -0700 | [diff] [blame] | 281 | <dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 282 | <groupId>cglib</groupId> |
| 283 | <artifactId>cglib-nodep</artifactId> |
| 284 | <version>2.2.2</version> |
| 285 | </dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 286 | --> |
HIGUCHI Yuta | 1ec484a | 2013-06-06 15:34:01 -0700 | [diff] [blame] | 287 | <!-- dependency to locally modified version --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 288 | <dependency> |
| 289 | <groupId>com.netflix.curator</groupId> |
| 290 | <artifactId>curator-framework</artifactId> |
| 291 | <version>1.3.5-SNAPSHOT</version> |
| 292 | </dependency> |
| 293 | <dependency> |
| 294 | <groupId>com.netflix.curator</groupId> |
| 295 | <artifactId>curator-client</artifactId> |
| 296 | <version>1.3.5-SNAPSHOT</version> |
| 297 | </dependency> |
| 298 | <dependency> |
| 299 | <groupId>com.netflix.curator</groupId> |
| 300 | <artifactId>curator-recipes</artifactId> |
| 301 | <version>1.3.5-SNAPSHOT</version> |
| 302 | </dependency> |
| 303 | <dependency> |
| 304 | <groupId>com.netflix.curator</groupId> |
| 305 | <artifactId>curator-x-discovery</artifactId> |
| 306 | <version>1.3.5-SNAPSHOT</version> |
| 307 | </dependency> |
| 308 | <!-- |
| 309 | <dependency> |
| 310 | <groupId>net.floodlightcontroller</groupId> |
| 311 | <artifactId>packetstreamer-thrift</artifactId> |
| 312 | <version>0.1.0</version> |
| 313 | </dependency> |
| 314 | --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 315 | </dependencies> |
| 316 | </project> |