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