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> |
Pankaj Berde | bbd3861 | 2013-06-22 05:59:12 -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> |
Pankaj Berde | c8275ea | 2013-11-26 14:02:23 -0800 | [diff] [blame] | 24 | <!-- In Project repository --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 25 | <repository> |
Pankaj Berde | c8275ea | 2013-11-26 14:02:23 -0800 | [diff] [blame] | 26 | <id>in-project</id> |
| 27 | <name>In Project Repo</name> |
| 28 | <url>file://${project.basedir}/repo</url> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 29 | </repository> |
| 30 | </repositories> |
| 31 | <properties> |
| 32 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Pankaj Berde | c8275ea | 2013-11-26 14:02:23 -0800 | [diff] [blame] | 33 | <powermock.version>1.5.1</powermock.version> |
Pankaj Berde | 37d6d4d | 2013-12-03 10:12:56 -0800 | [diff] [blame] | 34 | <restlet.version>2.1.4</restlet.version> |
Pavlin Radoslavov | a463e46 | 2013-12-13 15:18:50 -0800 | [diff] [blame] | 35 | <!-- <github.global.server>github</github.global.server> --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 36 | </properties> |
| 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
Pavlin Radoslavov | 4f090a8 | 2013-12-13 18:45:45 -0800 | [diff] [blame] | 40 | <!-- Note: the checkstyle configuration is also in the reporting section --> |
| 41 | <groupId>org.apache.maven.plugins</groupId> |
| 42 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 43 | <version>2.11</version> |
| 44 | <configuration> |
| 45 | <configLocation>conf/checkstyle/sun_checks.xml</configLocation> |
| 46 | </configuration> |
| 47 | </plugin> |
| 48 | <plugin> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 49 | <groupId>org.apache.maven.plugins</groupId> |
| 50 | <artifactId>maven-install-plugin</artifactId> |
| 51 | <version>2.3.1</version> |
| 52 | <executions> |
| 53 | </executions> |
| 54 | </plugin> |
| 55 | <!-- guice maven plugin for dependency injection inside maven --> |
| 56 | <plugin> |
| 57 | <groupId>org.apache.camel</groupId> |
| 58 | <artifactId>guice-maven-plugin</artifactId> |
| 59 | <version>2.11.0</version> |
| 60 | </plugin> |
| 61 | <!-- compile --> |
| 62 | <plugin> |
| 63 | <groupId>org.apache.maven.plugins</groupId> |
| 64 | <artifactId>maven-compiler-plugin</artifactId> |
| 65 | <version>2.3.2</version> |
| 66 | <configuration> |
Yuta HIGUCHI | 641d999 | 2013-12-18 16:40:45 -0800 | [diff] [blame^] | 67 | <source>1.7</source> |
| 68 | <target>1.7</target> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 69 | <encoding>UTF-8</encoding> |
| 70 | </configuration> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 71 | <executions> |
| 72 | </executions> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 73 | </plugin> |
| 74 | <!-- test --> |
| 75 | <plugin> |
| 76 | <groupId>org.apache.maven.plugins</groupId> |
| 77 | <artifactId>maven-surefire-plugin</artifactId> |
| 78 | <version>2.12</version> |
| 79 | <configuration> |
| 80 | <excludes> |
| 81 | <!-- exclude all test cases for now --> |
| 82 | <!-- <exclude>**/storage/tests/StorageTest.java</exclude> --> |
| 83 | <!-- <exclude>**/test/*</exclude> --> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 84 | <!-- |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 85 | <exclude>**/test/*</exclude> |
| 86 | <exclude>**/Test*.java</exclude> |
| 87 | <exclude>**/*Test.java</exclude> |
| 88 | <exclude>**/*TestCase.java</exclude> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 89 | --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 90 | </excludes> |
Pankaj Berde | c8275ea | 2013-11-26 14:02:23 -0800 | [diff] [blame] | 91 | <argLine>-XX:MaxPermSize=256m</argLine> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 92 | </configuration> |
| 93 | </plugin> |
| 94 | <!-- exec:java --> |
| 95 | <plugin> |
| 96 | <groupId>org.codehaus.mojo</groupId> |
| 97 | <artifactId>exec-maven-plugin</artifactId> |
| 98 | <version>1.2.1</version> |
| 99 | <configuration> |
HIGUCHI Yuta | 49cf4d2 | 2013-06-17 12:15:17 -0700 | [diff] [blame] | 100 | <mainClass>net.onrc.onos.ofcontroller.core.Main</mainClass> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 101 | </configuration> |
| 102 | <executions> |
| 103 | </executions> |
| 104 | </plugin> |
Jonathan Hart | 72f72f6 | 2013-06-12 09:54:19 +1200 | [diff] [blame] | 105 | <!--<plugin> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 106 | <groupId>org.codehaus.mojo</groupId> |
| 107 | <artifactId>build-helper-maven-plugin</artifactId> |
| 108 | <version>1.7</version> |
| 109 | <executions> |
| 110 | <execution> |
| 111 | <id>add-source</id> |
| 112 | <phase>generate-sources</phase> |
| 113 | <goals> |
| 114 | <goal>add-source</goal> |
| 115 | </goals> |
| 116 | <configuration> |
| 117 | <sources> |
| 118 | <source>lib/gen-java</source> |
| 119 | </sources> |
| 120 | </configuration> |
| 121 | </execution> |
| 122 | </executions> |
Jonathan Hart | 72f72f6 | 2013-06-12 09:54:19 +1200 | [diff] [blame] | 123 | </plugin>--> |
Naoki Shiota | 1c393ce | 2013-06-28 22:55:14 -0700 | [diff] [blame] | 124 | <plugin> |
| 125 | <groupId>org.apache.maven.plugins</groupId> |
| 126 | <artifactId>maven-javadoc-plugin</artifactId> |
| 127 | <version>2.9</version> |
| 128 | <configuration> |
| 129 | <charset>UTF-8</charset> |
| 130 | <locale>en</locale> |
| 131 | </configuration> |
| 132 | </plugin> |
timlindberg | 8b13e70 | 2013-07-17 14:45:50 -0700 | [diff] [blame] | 133 | <plugin> |
| 134 | <groupId>org.jacoco</groupId> |
| 135 | <artifactId>jacoco-maven-plugin</artifactId> |
| 136 | <version>0.6.3.201306030806</version> |
| 137 | <configuration> |
| 138 | <destfile>${basedir}/target/jacoco/jacoco.exec</destfile> |
| 139 | <datafile>${basedir}/target/jacoco/jacoco.exec</datafile> |
| 140 | </configuration> |
| 141 | <executions> |
| 142 | <execution> |
| 143 | <id>jacoco-initialize</id> |
| 144 | <goals> |
| 145 | <goal>prepare-agent</goal> |
| 146 | </goals> |
| 147 | </execution> |
| 148 | <execution> |
| 149 | <id>jacoco-site</id> |
| 150 | <phase>package</phase> |
| 151 | <goals> |
| 152 | <goal>report</goal> |
| 153 | </goals> |
| 154 | </execution> |
| 155 | </executions> |
| 156 | </plugin> |
Pavlin Radoslavov | a463e46 | 2013-12-13 15:18:50 -0800 | [diff] [blame] | 157 | <!-- |
Pankaj Berde | c8275ea | 2013-11-26 14:02:23 -0800 | [diff] [blame] | 158 | <plugin> |
| 159 | <groupId>com.github.github</groupId> |
| 160 | <artifactId>site-maven-plugin</artifactId> |
| 161 | <version>0.8</version> |
| 162 | <configuration> |
| 163 | <message>Creating site for ${project.version}</message> |
| 164 | <dryRun>true</dryRun> |
| 165 | <repositoryName>ONOS</repositoryName> |
| 166 | <repositoryOwner>OPENNETWORKINGLAB</repositoryOwner> |
| 167 | </configuration> |
| 168 | <executions> |
| 169 | <execution> |
| 170 | <goals> |
| 171 | <goal>site</goal> |
| 172 | </goals> |
| 173 | <phase>site</phase> |
| 174 | </execution> |
| 175 | </executions> |
| 176 | </plugin> |
Pavlin Radoslavov | a463e46 | 2013-12-13 15:18:50 -0800 | [diff] [blame] | 177 | --> |
Pankaj Berde | c8275ea | 2013-11-26 14:02:23 -0800 | [diff] [blame] | 178 | <plugin> |
| 179 | <artifactId>maven-assembly-plugin</artifactId> |
| 180 | <configuration> |
| 181 | <descriptorRefs> |
| 182 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 183 | </descriptorRefs> |
| 184 | </configuration> |
| 185 | </plugin> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 186 | </plugins> |
| 187 | </build> |
| 188 | <!-- for getting visualization reporting --> |
| 189 | <reporting> |
Naoki Shiota | 1c393ce | 2013-06-28 22:55:14 -0700 | [diff] [blame] | 190 | <excludeDefaults>true</excludeDefaults> |
| 191 | <outputDirectory>${project.build.directory}/site</outputDirectory> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 192 | <plugins> |
Pankaj Berde | c8275ea | 2013-11-26 14:02:23 -0800 | [diff] [blame] | 193 | <!-- |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 194 | <plugin> |
| 195 | <groupId>org.apache.camel</groupId> |
| 196 | <artifactId>guice-maven-plugin</artifactId> |
| 197 | <version>2.11.0</version> |
| 198 | </plugin> |
Pankaj Berde | c8275ea | 2013-11-26 14:02:23 -0800 | [diff] [blame] | 199 | --> |
Naoki Shiota | 1c393ce | 2013-06-28 22:55:14 -0700 | [diff] [blame] | 200 | <plugin> |
| 201 | <groupId>org.apache.maven.plugins</groupId> |
| 202 | <artifactId>maven-project-info-reports-plugin</artifactId> |
| 203 | <version>2.4</version> |
| 204 | <configuration> |
| 205 | <dependencyDetailsEnabled>false</dependencyDetailsEnabled> |
| 206 | <dependencyLocationsEnabled>false</dependencyLocationsEnabled> |
| 207 | </configuration> |
| 208 | <reportSets> |
| 209 | <reportSet> |
| 210 | <reports> |
| 211 | <report>dependencies</report> |
Pankaj Berde | c8275ea | 2013-11-26 14:02:23 -0800 | [diff] [blame] | 212 | <!--report>maven-emma-plugin</report--> |
Naoki Shiota | 1c393ce | 2013-06-28 22:55:14 -0700 | [diff] [blame] | 213 | <report>scm</report> |
| 214 | </reports> |
| 215 | </reportSet> |
| 216 | </reportSets> |
| 217 | </plugin> |
| 218 | <plugin> |
| 219 | <groupId>org.apache.maven.plugins</groupId> |
| 220 | <artifactId>maven-javadoc-plugin</artifactId> |
| 221 | <version>2.9</version> |
| 222 | <configuration> |
| 223 | <charset>UTF-8</charset> |
| 224 | <locale>en</locale> |
| 225 | </configuration> |
| 226 | </plugin> |
Pavlin Radoslavov | 4f090a8 | 2013-12-13 18:45:45 -0800 | [diff] [blame] | 227 | <plugin> |
| 228 | <!-- Note: the checkstyle configuration is also in the build section --> |
| 229 | <groupId>org.apache.maven.plugins</groupId> |
| 230 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 231 | <version>2.11</version> |
| 232 | <configuration> |
| 233 | <configLocation>conf/checkstyle/sun_checks.xml</configLocation> |
| 234 | </configuration> |
| 235 | <reportSets> |
| 236 | <reportSet> |
| 237 | <reports> |
| 238 | <report>checkstyle</report> |
| 239 | </reports> |
| 240 | </reportSet> |
| 241 | </reportSets> |
| 242 | </plugin> |
| 243 | <plugin> |
| 244 | <groupId>org.apache.maven.plugins</groupId> |
| 245 | <artifactId>maven-jxr-plugin</artifactId> |
| 246 | <version>2.3</version> |
| 247 | </plugin> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 248 | </plugins> |
| 249 | </reporting> |
| 250 | <dependencies> |
Pankaj Berde | c8275ea | 2013-11-26 14:02:23 -0800 | [diff] [blame] | 251 | <!-- |
| 252 | <dependency> |
| 253 | <groupId>com.esotericsoftware.kryo</groupId> |
| 254 | <artifactId>kryo</artifactId> |
| 255 | <version>2.22</version> |
| 256 | </dependency> |
| 257 | --> |
| 258 | <dependency> |
| 259 | <groupId>net.onrc.onos</groupId> |
| 260 | <artifactId>kryo2</artifactId> |
| 261 | <version>2.22</version> |
| 262 | </dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 263 | <!-- ONOS's direct dependencies --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 264 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 265 | <groupId>org.apache.cassandra</groupId> |
| 266 | <artifactId>apache-cassandra</artifactId> |
| 267 | <version>1.2.4</version> |
| 268 | <type>pom</type> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 269 | </dependency> |
| 270 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 271 | <groupId>com.thinkaurelius.titan</groupId> |
| 272 | <artifactId>titan-all</artifactId> |
| 273 | <version>0.2.1</version> |
Jonathan Hart | 2818249 | 2013-06-13 15:22:03 +1200 | [diff] [blame] | 274 | <exclusions> |
| 275 | <exclusion> |
| 276 | <groupId>org.slf4j</groupId> |
| 277 | <artifactId>slf4j-log4j12</artifactId> |
| 278 | </exclusion> |
| 279 | </exclusions> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 280 | </dependency> |
| 281 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 282 | <groupId>com.tinkerpop</groupId> |
| 283 | <artifactId>frames</artifactId> |
Pankaj Berde | 0ecc392 | 2013-12-09 17:16:42 -0800 | [diff] [blame] | 284 | <version>2.3.1</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 285 | </dependency> |
| 286 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 287 | <groupId>com.tinkerpop.blueprints</groupId> |
| 288 | <artifactId>blueprints-core</artifactId> |
Pankaj Berde | 0ecc392 | 2013-12-09 17:16:42 -0800 | [diff] [blame] | 289 | <version>2.3.0</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 290 | </dependency> |
| 291 | <dependency> |
Pankaj Berde | c8275ea | 2013-11-26 14:02:23 -0800 | [diff] [blame] | 292 | <groupId>com.hazelcast</groupId> |
| 293 | <artifactId>hazelcast</artifactId> |
| 294 | <version>3.0.2</version> |
| 295 | </dependency> |
| 296 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 297 | <groupId>net.sf.json-lib</groupId> |
| 298 | <artifactId>json-lib</artifactId> |
| 299 | <version>2.4</version> |
| 300 | <classifier>jdk15</classifier> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 301 | </dependency> |
| 302 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 303 | <groupId>org.restlet.jse</groupId> |
| 304 | <artifactId>org.restlet</artifactId> |
| 305 | <version>${restlet.version}</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 306 | </dependency> |
| 307 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 308 | <groupId>org.restlet.jse</groupId> |
| 309 | <artifactId>org.restlet.ext.slf4j</artifactId> |
| 310 | <version>${restlet.version}</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 311 | </dependency> |
Pankaj Berde | c8275ea | 2013-11-26 14:02:23 -0800 | [diff] [blame] | 312 | <dependency> |
Pankaj Berde | 37d6d4d | 2013-12-03 10:12:56 -0800 | [diff] [blame] | 313 | <groupId>org.codehaus.jackson</groupId> |
| 314 | <artifactId>jackson-core-asl</artifactId> |
| 315 | <version>1.9.13</version> |
| 316 | </dependency> |
| 317 | <dependency> |
| 318 | <groupId>org.codehaus.jackson</groupId> |
| 319 | <artifactId>jackson-mapper-asl</artifactId> |
| 320 | <version>1.9.13</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 321 | </dependency> |
| 322 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 323 | <groupId>ch.qos.logback</groupId> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 324 | <artifactId>logback-classic</artifactId> |
Pankaj Berde | 9847842 | 2013-09-10 13:53:26 -0700 | [diff] [blame] | 325 | <version>1.0.13</version> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 326 | <scope>runtime</scope> |
| 327 | </dependency> |
| 328 | <!-- Floodlight's dependencies --> |
| 329 | <dependency> |
| 330 | <groupId>net.sourceforge.cobertura</groupId> |
| 331 | <artifactId>cobertura</artifactId> |
| 332 | <version>1.9.4.1</version> |
| 333 | </dependency> |
| 334 | <!-- |
| 335 | <dependency> |
| 336 | <groupId>com.google.guava</groupId> |
| 337 | <artifactId>guava</artifactId> |
Pankaj Berde | 9847842 | 2013-09-10 13:53:26 -0700 | [diff] [blame] | 338 | <version>14.0.1</version> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 339 | </dependency> |
| 340 | --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 341 | <dependency> |
| 342 | <groupId>org.slf4j</groupId> |
| 343 | <artifactId>slf4j-api</artifactId> |
Pankaj Berde | 9847842 | 2013-09-10 13:53:26 -0700 | [diff] [blame] | 344 | <version>1.7.5</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 345 | </dependency> |
| 346 | <dependency> |
| 347 | <groupId>org.restlet.jse</groupId> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 348 | <artifactId>org.restlet.ext.jackson</artifactId> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 349 | <version>${restlet.version}</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 350 | </dependency> |
| 351 | <dependency> |
| 352 | <groupId>org.restlet.jse</groupId> |
| 353 | <artifactId>org.restlet.ext.simple</artifactId> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 354 | <version>${restlet.version}</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 355 | </dependency> |
| 356 | <dependency> |
| 357 | <groupId>org.simpleframework</groupId> |
| 358 | <artifactId>simple</artifactId> |
| 359 | <version>4.1.21</version> |
| 360 | </dependency> |
| 361 | <dependency> |
Pankaj Berde | 9847842 | 2013-09-10 13:53:26 -0700 | [diff] [blame] | 362 | <groupId>io.netty</groupId> |
| 363 | <artifactId>netty-all</artifactId> |
| 364 | <version>4.0.8.Final</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 365 | </dependency> |
| 366 | <dependency> |
| 367 | <groupId>args4j</groupId> |
| 368 | <artifactId>args4j</artifactId> |
Pankaj Berde | 9847842 | 2013-09-10 13:53:26 -0700 | [diff] [blame] | 369 | <version>2.0.25</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 370 | </dependency> |
| 371 | <dependency> |
| 372 | <groupId>com.googlecode.concurrentlinkedhashmap</groupId> |
| 373 | <artifactId>concurrentlinkedhashmap-lru</artifactId> |
Pankaj Berde | 9847842 | 2013-09-10 13:53:26 -0700 | [diff] [blame] | 374 | <version>1.4</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 375 | </dependency> |
Jonathan Hart | a37f9c3 | 2013-06-12 09:13:58 +1200 | [diff] [blame] | 376 | <!--<dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 377 | <groupId>org.python</groupId> |
| 378 | <artifactId>jython-standalone</artifactId> |
| 379 | <version>2.5.2</version> |
Jonathan Hart | a37f9c3 | 2013-06-12 09:13:58 +1200 | [diff] [blame] | 380 | </dependency>--> |
Jonathan Hart | 72f72f6 | 2013-06-12 09:54:19 +1200 | [diff] [blame] | 381 | <!--<dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 382 | <groupId>org.apache.thrift</groupId> |
| 383 | <artifactId>libthrift</artifactId> |
| 384 | <version>0.7.0</version> |
Jonathan Hart | 72f72f6 | 2013-06-12 09:54:19 +1200 | [diff] [blame] | 385 | </dependency>--> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 386 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 387 | <groupId>com.google.inject</groupId> |
| 388 | <artifactId>guice</artifactId> |
| 389 | <version>3.0</version> |
| 390 | </dependency> |
| 391 | <!-- Dependency for libraries used for testing --> |
| 392 | <dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 393 | <groupId>junit</groupId> |
| 394 | <artifactId>junit</artifactId> |
HIGUCHI Yuta | e4b0722 | 2013-06-08 02:17:30 -0700 | [diff] [blame] | 395 | <version>4.11</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 396 | <scope>test</scope> |
| 397 | </dependency> |
| 398 | <dependency> |
| 399 | <groupId>org.easymock</groupId> |
| 400 | <artifactId>easymock</artifactId> |
| 401 | <version>3.1</version> |
| 402 | <scope>test</scope> |
| 403 | </dependency> |
| 404 | <dependency> |
HIGUCHI Yuta | e4b0722 | 2013-06-08 02:17:30 -0700 | [diff] [blame] | 405 | <groupId>org.powermock</groupId> |
| 406 | <artifactId>powermock-module-junit4</artifactId> |
| 407 | <version>${powermock.version}</version> |
| 408 | <scope>test</scope> |
| 409 | </dependency> |
| 410 | <dependency> |
| 411 | <groupId>org.powermock</groupId> |
| 412 | <artifactId>powermock-api-easymock</artifactId> |
| 413 | <version>${powermock.version}</version> |
| 414 | <scope>test</scope> |
| 415 | </dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 416 | <!-- |
| 417 | <dependency> |
| 418 | <groupId>org.objenesis</groupId> |
| 419 | <artifactId>objenesis</artifactId> |
| 420 | <version>1.2</version> |
| 421 | <scope>test</scope> |
| 422 | </dependency> |
HIGUCHI Yuta | e4b0722 | 2013-06-08 02:17:30 -0700 | [diff] [blame] | 423 | <dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 424 | <groupId>cglib</groupId> |
| 425 | <artifactId>cglib-nodep</artifactId> |
| 426 | <version>2.2.2</version> |
| 427 | </dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 428 | --> |
HIGUCHI Yuta | 1ec484a | 2013-06-06 15:34:01 -0700 | [diff] [blame] | 429 | <!-- dependency to locally modified version --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 430 | <dependency> |
| 431 | <groupId>com.netflix.curator</groupId> |
| 432 | <artifactId>curator-framework</artifactId> |
| 433 | <version>1.3.5-SNAPSHOT</version> |
| 434 | </dependency> |
| 435 | <dependency> |
| 436 | <groupId>com.netflix.curator</groupId> |
| 437 | <artifactId>curator-client</artifactId> |
| 438 | <version>1.3.5-SNAPSHOT</version> |
| 439 | </dependency> |
| 440 | <dependency> |
| 441 | <groupId>com.netflix.curator</groupId> |
| 442 | <artifactId>curator-recipes</artifactId> |
| 443 | <version>1.3.5-SNAPSHOT</version> |
| 444 | </dependency> |
| 445 | <dependency> |
| 446 | <groupId>com.netflix.curator</groupId> |
| 447 | <artifactId>curator-x-discovery</artifactId> |
| 448 | <version>1.3.5-SNAPSHOT</version> |
| 449 | </dependency> |
| 450 | <!-- |
| 451 | <dependency> |
| 452 | <groupId>net.floodlightcontroller</groupId> |
| 453 | <artifactId>packetstreamer-thrift</artifactId> |
| 454 | <version>0.1.0</version> |
| 455 | </dependency> |
| 456 | --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 457 | </dependencies> |
Pankaj Berde | 9847842 | 2013-09-10 13:53:26 -0700 | [diff] [blame] | 458 | </project> |