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> |
Yuta HIGUCHI | b561efa | 2013-12-20 01:35:04 -0800 | [diff] [blame] | 11 | <name>ONOS-RAMCloud</name> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 12 | <url>http://onlab.us/</url> |
| 13 | <repositories> |
Yuta HIGUCHI | d62fb87 | 2014-01-02 10:40:32 -0800 | [diff] [blame] | 14 | <!-- In Project repository --> |
| 15 | <repository> |
| 16 | <id>in-project</id> |
| 17 | <name>In Project Repo</name> |
| 18 | <url>file://${project.basedir}/repo</url> |
| 19 | </repository> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 20 | <repository> |
| 21 | <id>central</id> |
| 22 | <name>Maven Central repository</name> |
| 23 | <url>http://repo1.maven.org/maven2</url> |
| 24 | </repository> |
| 25 | <repository> |
| 26 | <id>maven-restlet</id> |
| 27 | <name>Public online Restlet repository</name> |
| 28 | <url>http://maven.restlet.org</url> |
| 29 | </repository> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 30 | </repositories> |
| 31 | <properties> |
| 32 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
yoshi | 2fd4c7e | 2013-11-22 15:47:55 -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> |
HIGUCHI Yuta | 71c96dd | 2013-10-20 17:15:56 -0700 | [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 | <!-- |
HIGUCHI Yuta | 842b6f7 | 2013-10-08 14:19:48 -0700 | [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 | --> |
Jonathan Hart | 2c61a50 | 2013-10-18 18:12:26 -0700 | [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> |
Yuta HIGUCHI | b561efa | 2013-12-20 01:35:04 -0800 | [diff] [blame] | 186 | <plugin> |
| 187 | <groupId>org.apache.maven.plugins</groupId> |
| 188 | <artifactId>maven-dependency-plugin</artifactId> |
| 189 | <version>2.8</version> |
| 190 | <executions> |
| 191 | <execution> |
| 192 | <id>build-classpath</id> |
| 193 | <phase>generate-sources</phase> |
| 194 | <goals> |
| 195 | <goal>build-classpath</goal> |
| 196 | </goals> |
| 197 | <configuration> |
Yuta HIGUCHI | b561efa | 2013-12-20 01:35:04 -0800 | [diff] [blame] | 198 | <outputFile>${project.basedir}/.javacp</outputFile> |
| 199 | </configuration> |
| 200 | </execution> |
| 201 | </executions> |
| 202 | </plugin> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 203 | </plugins> |
| 204 | </build> |
| 205 | <!-- for getting visualization reporting --> |
| 206 | <reporting> |
Naoki Shiota | 1c393ce | 2013-06-28 22:55:14 -0700 | [diff] [blame] | 207 | <excludeDefaults>true</excludeDefaults> |
| 208 | <outputDirectory>${project.build.directory}/site</outputDirectory> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 209 | <plugins> |
HIGUCHI Yuta | 842b6f7 | 2013-10-08 14:19:48 -0700 | [diff] [blame] | 210 | <!-- |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 211 | <plugin> |
| 212 | <groupId>org.apache.camel</groupId> |
| 213 | <artifactId>guice-maven-plugin</artifactId> |
| 214 | <version>2.11.0</version> |
| 215 | </plugin> |
HIGUCHI Yuta | 842b6f7 | 2013-10-08 14:19:48 -0700 | [diff] [blame] | 216 | --> |
Naoki Shiota | 1c393ce | 2013-06-28 22:55:14 -0700 | [diff] [blame] | 217 | <plugin> |
| 218 | <groupId>org.apache.maven.plugins</groupId> |
| 219 | <artifactId>maven-project-info-reports-plugin</artifactId> |
| 220 | <version>2.4</version> |
| 221 | <configuration> |
| 222 | <dependencyDetailsEnabled>false</dependencyDetailsEnabled> |
| 223 | <dependencyLocationsEnabled>false</dependencyLocationsEnabled> |
| 224 | </configuration> |
| 225 | <reportSets> |
| 226 | <reportSet> |
| 227 | <reports> |
| 228 | <report>dependencies</report> |
HIGUCHI Yuta | 842b6f7 | 2013-10-08 14:19:48 -0700 | [diff] [blame] | 229 | <!--report>maven-emma-plugin</report--> |
Naoki Shiota | 1c393ce | 2013-06-28 22:55:14 -0700 | [diff] [blame] | 230 | <report>scm</report> |
| 231 | </reports> |
| 232 | </reportSet> |
| 233 | </reportSets> |
| 234 | </plugin> |
| 235 | <plugin> |
| 236 | <groupId>org.apache.maven.plugins</groupId> |
| 237 | <artifactId>maven-javadoc-plugin</artifactId> |
| 238 | <version>2.9</version> |
| 239 | <configuration> |
| 240 | <charset>UTF-8</charset> |
| 241 | <locale>en</locale> |
| 242 | </configuration> |
| 243 | </plugin> |
Pavlin Radoslavov | 4f090a8 | 2013-12-13 18:45:45 -0800 | [diff] [blame] | 244 | <plugin> |
| 245 | <!-- Note: the checkstyle configuration is also in the build section --> |
| 246 | <groupId>org.apache.maven.plugins</groupId> |
| 247 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 248 | <version>2.11</version> |
| 249 | <configuration> |
| 250 | <configLocation>conf/checkstyle/sun_checks.xml</configLocation> |
| 251 | </configuration> |
| 252 | <reportSets> |
| 253 | <reportSet> |
| 254 | <reports> |
| 255 | <report>checkstyle</report> |
| 256 | </reports> |
| 257 | </reportSet> |
| 258 | </reportSets> |
| 259 | </plugin> |
| 260 | <plugin> |
| 261 | <groupId>org.apache.maven.plugins</groupId> |
| 262 | <artifactId>maven-jxr-plugin</artifactId> |
| 263 | <version>2.3</version> |
| 264 | </plugin> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 265 | </plugins> |
| 266 | </reporting> |
| 267 | <dependencies> |
Yuta HIGUCHI | 5548a49 | 2013-10-24 00:39:23 -0700 | [diff] [blame] | 268 | <dependency> |
| 269 | <groupId>com.esotericsoftware.kryo</groupId> |
| 270 | <artifactId>kryo</artifactId> |
| 271 | <version>2.22</version> |
| 272 | </dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 273 | <!-- ONOS's direct dependencies --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 274 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 275 | <groupId>org.apache.cassandra</groupId> |
| 276 | <artifactId>apache-cassandra</artifactId> |
| 277 | <version>1.2.4</version> |
| 278 | <type>pom</type> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 279 | </dependency> |
| 280 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 281 | <groupId>com.thinkaurelius.titan</groupId> |
| 282 | <artifactId>titan-all</artifactId> |
Jonathan Hart | f371e98 | 2014-01-15 10:02:50 -0800 | [diff] [blame] | 283 | <version>0.4.2</version> |
Jonathan Hart | 2818249 | 2013-06-13 15:22:03 +1200 | [diff] [blame] | 284 | <exclusions> |
| 285 | <exclusion> |
| 286 | <groupId>org.slf4j</groupId> |
| 287 | <artifactId>slf4j-log4j12</artifactId> |
| 288 | </exclusion> |
| 289 | </exclusions> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 290 | </dependency> |
| 291 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 292 | <groupId>com.tinkerpop</groupId> |
| 293 | <artifactId>frames</artifactId> |
Jonathan Hart | f371e98 | 2014-01-15 10:02:50 -0800 | [diff] [blame] | 294 | <version>2.4.0</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 295 | </dependency> |
| 296 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 297 | <groupId>com.tinkerpop.blueprints</groupId> |
| 298 | <artifactId>blueprints-core</artifactId> |
Yuta HIGUCHI | cc8b101 | 2014-01-24 09:14:39 -0800 | [diff] [blame] | 299 | <version>2.4.0</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 300 | </dependency> |
yoshi | 2fd4c7e | 2013-11-22 15:47:55 -0800 | [diff] [blame] | 301 | <dependency> |
yoshi | 28bac13 | 2014-01-22 11:00:17 -0800 | [diff] [blame] | 302 | <groupId>com.tinkerpop.rexster</groupId> |
| 303 | <artifactId>rexster-core</artifactId> |
| 304 | <version>2.4.0</version> |
| 305 | </dependency> |
| 306 | <dependency> |
| 307 | <groupId>com.tinkerpop.blueprints</groupId> |
| 308 | <artifactId>blueprints-test</artifactId> |
| 309 | <version>2.4.0</version> |
| 310 | </dependency> |
| 311 | <dependency> |
| 312 | <groupId>com.google.protobuf</groupId> |
| 313 | <artifactId>protobuf-java</artifactId> |
| 314 | <version>2.5.0</version> |
| 315 | </dependency> |
| 316 | <dependency> |
yoshi | 2fd4c7e | 2013-11-22 15:47:55 -0800 | [diff] [blame] | 317 | <groupId>com.hazelcast</groupId> |
| 318 | <artifactId>hazelcast</artifactId> |
| 319 | <version>3.0.2</version> |
| 320 | </dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 321 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 322 | <groupId>net.sf.json-lib</groupId> |
| 323 | <artifactId>json-lib</artifactId> |
| 324 | <version>2.4</version> |
| 325 | <classifier>jdk15</classifier> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 326 | </dependency> |
| 327 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 328 | <groupId>org.restlet.jse</groupId> |
| 329 | <artifactId>org.restlet</artifactId> |
| 330 | <version>${restlet.version}</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 331 | </dependency> |
| 332 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 333 | <groupId>org.restlet.jse</groupId> |
| 334 | <artifactId>org.restlet.ext.slf4j</artifactId> |
| 335 | <version>${restlet.version}</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 336 | </dependency> |
| 337 | <dependency> |
| 338 | <groupId>org.codehaus.jackson</groupId> |
| 339 | <artifactId>jackson-core-asl</artifactId> |
Pankaj Berde | 85c58f9 | 2013-10-03 18:26:08 -0700 | [diff] [blame] | 340 | <version>1.9.13</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 341 | </dependency> |
| 342 | <dependency> |
| 343 | <groupId>org.codehaus.jackson</groupId> |
| 344 | <artifactId>jackson-mapper-asl</artifactId> |
Pankaj Berde | 85c58f9 | 2013-10-03 18:26:08 -0700 | [diff] [blame] | 345 | <version>1.9.13</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 346 | </dependency> |
| 347 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 348 | <groupId>ch.qos.logback</groupId> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 349 | <artifactId>logback-classic</artifactId> |
Pankaj Berde | 9847842 | 2013-09-10 13:53:26 -0700 | [diff] [blame] | 350 | <version>1.0.13</version> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 351 | <scope>runtime</scope> |
| 352 | </dependency> |
| 353 | <!-- Floodlight's dependencies --> |
| 354 | <dependency> |
| 355 | <groupId>net.sourceforge.cobertura</groupId> |
| 356 | <artifactId>cobertura</artifactId> |
| 357 | <version>1.9.4.1</version> |
| 358 | </dependency> |
| 359 | <!-- |
| 360 | <dependency> |
| 361 | <groupId>com.google.guava</groupId> |
| 362 | <artifactId>guava</artifactId> |
Pankaj Berde | 9847842 | 2013-09-10 13:53:26 -0700 | [diff] [blame] | 363 | <version>14.0.1</version> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 364 | </dependency> |
| 365 | --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 366 | <dependency> |
| 367 | <groupId>org.slf4j</groupId> |
| 368 | <artifactId>slf4j-api</artifactId> |
Pankaj Berde | 9847842 | 2013-09-10 13:53:26 -0700 | [diff] [blame] | 369 | <version>1.7.5</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 370 | </dependency> |
| 371 | <dependency> |
| 372 | <groupId>org.restlet.jse</groupId> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 373 | <artifactId>org.restlet.ext.jackson</artifactId> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 374 | <version>${restlet.version}</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 375 | </dependency> |
| 376 | <dependency> |
| 377 | <groupId>org.restlet.jse</groupId> |
| 378 | <artifactId>org.restlet.ext.simple</artifactId> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 379 | <version>${restlet.version}</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 380 | </dependency> |
| 381 | <dependency> |
| 382 | <groupId>org.simpleframework</groupId> |
| 383 | <artifactId>simple</artifactId> |
| 384 | <version>4.1.21</version> |
| 385 | </dependency> |
| 386 | <dependency> |
Pankaj Berde | 85c58f9 | 2013-10-03 18:26:08 -0700 | [diff] [blame] | 387 | <groupId>io.netty</groupId> |
| 388 | <artifactId>netty-all</artifactId> |
| 389 | <version>4.0.8.Final</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 390 | </dependency> |
| 391 | <dependency> |
| 392 | <groupId>args4j</groupId> |
| 393 | <artifactId>args4j</artifactId> |
Pankaj Berde | 9847842 | 2013-09-10 13:53:26 -0700 | [diff] [blame] | 394 | <version>2.0.25</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 395 | </dependency> |
| 396 | <dependency> |
| 397 | <groupId>com.googlecode.concurrentlinkedhashmap</groupId> |
| 398 | <artifactId>concurrentlinkedhashmap-lru</artifactId> |
Pankaj Berde | 9847842 | 2013-09-10 13:53:26 -0700 | [diff] [blame] | 399 | <version>1.4</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 400 | </dependency> |
Jonathan Hart | a37f9c3 | 2013-06-12 09:13:58 +1200 | [diff] [blame] | 401 | <!--<dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 402 | <groupId>org.python</groupId> |
| 403 | <artifactId>jython-standalone</artifactId> |
| 404 | <version>2.5.2</version> |
Jonathan Hart | a37f9c3 | 2013-06-12 09:13:58 +1200 | [diff] [blame] | 405 | </dependency>--> |
Jonathan Hart | 72f72f6 | 2013-06-12 09:54:19 +1200 | [diff] [blame] | 406 | <!--<dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 407 | <groupId>org.apache.thrift</groupId> |
| 408 | <artifactId>libthrift</artifactId> |
| 409 | <version>0.7.0</version> |
Jonathan Hart | 72f72f6 | 2013-06-12 09:54:19 +1200 | [diff] [blame] | 410 | </dependency>--> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 411 | <dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 412 | <groupId>com.google.inject</groupId> |
| 413 | <artifactId>guice</artifactId> |
| 414 | <version>3.0</version> |
| 415 | </dependency> |
| 416 | <!-- Dependency for libraries used for testing --> |
| 417 | <dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 418 | <groupId>junit</groupId> |
| 419 | <artifactId>junit</artifactId> |
HIGUCHI Yuta | e4b0722 | 2013-06-08 02:17:30 -0700 | [diff] [blame] | 420 | <version>4.11</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 421 | <scope>test</scope> |
| 422 | </dependency> |
| 423 | <dependency> |
| 424 | <groupId>org.easymock</groupId> |
| 425 | <artifactId>easymock</artifactId> |
yoshi | f5a6a50 | 2013-11-25 09:30:35 -0800 | [diff] [blame] | 426 | <version>3.1</version> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 427 | <scope>test</scope> |
| 428 | </dependency> |
| 429 | <dependency> |
HIGUCHI Yuta | e4b0722 | 2013-06-08 02:17:30 -0700 | [diff] [blame] | 430 | <groupId>org.powermock</groupId> |
| 431 | <artifactId>powermock-module-junit4</artifactId> |
| 432 | <version>${powermock.version}</version> |
| 433 | <scope>test</scope> |
| 434 | </dependency> |
| 435 | <dependency> |
| 436 | <groupId>org.powermock</groupId> |
| 437 | <artifactId>powermock-api-easymock</artifactId> |
| 438 | <version>${powermock.version}</version> |
| 439 | <scope>test</scope> |
| 440 | </dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 441 | <!-- |
| 442 | <dependency> |
| 443 | <groupId>org.objenesis</groupId> |
| 444 | <artifactId>objenesis</artifactId> |
| 445 | <version>1.2</version> |
| 446 | <scope>test</scope> |
| 447 | </dependency> |
HIGUCHI Yuta | e4b0722 | 2013-06-08 02:17:30 -0700 | [diff] [blame] | 448 | <dependency> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 449 | <groupId>cglib</groupId> |
| 450 | <artifactId>cglib-nodep</artifactId> |
| 451 | <version>2.2.2</version> |
| 452 | </dependency> |
HIGUCHI Yuta | 9f5c5a7 | 2013-06-11 13:21:43 -0700 | [diff] [blame] | 453 | --> |
HIGUCHI Yuta | 1ec484a | 2013-06-06 15:34:01 -0700 | [diff] [blame] | 454 | <!-- dependency to locally modified version --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 455 | <dependency> |
| 456 | <groupId>com.netflix.curator</groupId> |
| 457 | <artifactId>curator-framework</artifactId> |
| 458 | <version>1.3.5-SNAPSHOT</version> |
| 459 | </dependency> |
| 460 | <dependency> |
| 461 | <groupId>com.netflix.curator</groupId> |
| 462 | <artifactId>curator-client</artifactId> |
| 463 | <version>1.3.5-SNAPSHOT</version> |
| 464 | </dependency> |
| 465 | <dependency> |
| 466 | <groupId>com.netflix.curator</groupId> |
| 467 | <artifactId>curator-recipes</artifactId> |
| 468 | <version>1.3.5-SNAPSHOT</version> |
| 469 | </dependency> |
| 470 | <dependency> |
| 471 | <groupId>com.netflix.curator</groupId> |
| 472 | <artifactId>curator-x-discovery</artifactId> |
| 473 | <version>1.3.5-SNAPSHOT</version> |
| 474 | </dependency> |
| 475 | <!-- |
| 476 | <dependency> |
| 477 | <groupId>net.floodlightcontroller</groupId> |
| 478 | <artifactId>packetstreamer-thrift</artifactId> |
| 479 | <version>0.1.0</version> |
| 480 | </dependency> |
| 481 | --> |
HIGUCHI Yuta | e7aa925 | 2013-06-06 14:54:21 -0700 | [diff] [blame] | 482 | </dependencies> |
Pankaj Berde | 85c58f9 | 2013-10-03 18:26:08 -0700 | [diff] [blame] | 483 | </project> |