buyingyi | c73348c | 2012-11-02 00:31:31 +0000 | [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/maven-v4_0_0.xsd">
|
| 3 | <modelVersion>4.0.0</modelVersion>
|
| 4 | <groupId>edu.uci.ics.hivesterix</groupId>
|
| 5 | <artifactId>hivesterix</artifactId>
|
| 6 | <version>0.2.3-SNAPSHOT</version>
|
| 7 | <name>hivesterix</name>
|
| 8 | <dependencies>
|
| 9 | <dependency>
|
| 10 | <groupId>javax.servlet</groupId>
|
| 11 | <artifactId>servlet-api</artifactId>
|
| 12 | <version>2.5</version>
|
| 13 | <type>jar</type>
|
| 14 | <scope>compile</scope>
|
| 15 | </dependency>
|
| 16 | <dependency>
|
| 17 | <groupId>junit</groupId>
|
| 18 | <artifactId>junit</artifactId>
|
| 19 | <version>4.8.1</version>
|
| 20 | <scope>compile</scope>
|
| 21 | </dependency>
|
| 22 | <dependency>
|
| 23 | <groupId>args4j</groupId>
|
| 24 | <artifactId>args4j</artifactId>
|
| 25 | <version>2.0.12</version>
|
| 26 | <type>jar</type>
|
| 27 | <scope>compile</scope>
|
| 28 | </dependency>
|
| 29 | <dependency>
|
| 30 | <groupId>org.json</groupId>
|
| 31 | <artifactId>json</artifactId>
|
| 32 | <version>20090211</version>
|
| 33 | <type>jar</type>
|
| 34 | <scope>compile</scope>
|
| 35 | </dependency>
|
| 36 | <dependency>
|
| 37 | <groupId>org.eclipse.jetty</groupId>
|
| 38 | <artifactId>jetty-server</artifactId>
|
| 39 | <version>8.0.0.M1</version>
|
| 40 | <type>jar</type>
|
| 41 | <scope>compile</scope>
|
| 42 | </dependency>
|
| 43 | <dependency>
|
| 44 | <groupId>org.eclipse.jetty</groupId>
|
| 45 | <artifactId>jetty-servlet</artifactId>
|
| 46 | <version>8.0.0.M1</version>
|
| 47 | <type>jar</type>
|
| 48 | <scope>compile</scope>
|
| 49 | </dependency>
|
| 50 | <dependency>
|
| 51 | <groupId>org.apache.hadoop</groupId>
|
| 52 | <artifactId>hadoop-core</artifactId>
|
| 53 | <version>0.20.2</version>
|
| 54 | </dependency>
|
| 55 | <dependency>
|
| 56 | <groupId>jline</groupId>
|
| 57 | <artifactId>jline</artifactId>
|
| 58 | <version>0.9.94</version>
|
| 59 | <type>jar</type>
|
| 60 | <scope>compile</scope>
|
| 61 | </dependency>
|
| 62 | <dependency>
|
| 63 | <groupId>org.datanucleus</groupId>
|
| 64 | <artifactId>datanucleus-core</artifactId>
|
| 65 | <version>2.0.3</version>
|
| 66 | <type>jar</type>
|
| 67 | <scope>compile</scope>
|
| 68 | </dependency>
|
| 69 | <dependency>
|
| 70 | <groupId>org.datanucleus</groupId>
|
| 71 | <artifactId>datanucleus-connectionpool</artifactId>
|
| 72 | <version>2.0.3</version>
|
| 73 | <type>jar</type>
|
| 74 | <scope>compile</scope>
|
| 75 | </dependency>
|
| 76 | <dependency>
|
| 77 | <groupId>org.datanucleus</groupId>
|
| 78 | <artifactId>datanucleus-enhancer</artifactId>
|
| 79 | <version>2.0.3</version>
|
| 80 | <type>jar</type>
|
| 81 | <scope>compile</scope>
|
| 82 | </dependency>
|
| 83 | <dependency>
|
| 84 | <groupId>org.datanucleus</groupId>
|
| 85 | <artifactId>datanucleus-rdbms</artifactId>
|
| 86 | <version>2.0.3</version>
|
| 87 | <type>jar</type>
|
| 88 | <scope>compile</scope>
|
| 89 | </dependency>
|
| 90 | <dependency>
|
| 91 | <groupId>commons-dbcp</groupId>
|
| 92 | <artifactId>commons-dbcp</artifactId>
|
| 93 | <version>1.4</version>
|
| 94 | <type>jar</type>
|
| 95 | <scope>compile</scope>
|
| 96 | </dependency>
|
| 97 | <dependency>
|
| 98 | <groupId>commons-pool</groupId>
|
| 99 | <artifactId>commons-pool</artifactId>
|
| 100 | <version>1.5.4</version>
|
| 101 | <type>jar</type>
|
| 102 | <scope>compile</scope>
|
| 103 | </dependency>
|
| 104 | <dependency>
|
buyingyi | c73348c | 2012-11-02 00:31:31 +0000 | [diff] [blame] | 105 | <groupId>commons-collections</groupId>
|
| 106 | <artifactId>commons-collections</artifactId>
|
| 107 | <version>3.2.1</version>
|
| 108 | <type>jar</type>
|
| 109 | <scope>compile</scope>
|
| 110 | </dependency>
|
| 111 | <dependency>
|
| 112 | <groupId>commons-lang</groupId>
|
| 113 | <artifactId>commons-lang</artifactId>
|
| 114 | <version>2.4</version>
|
| 115 | <type>jar</type>
|
| 116 | <scope>compile</scope>
|
| 117 | </dependency>
|
| 118 | <dependency>
|
| 119 | <groupId>javax</groupId>
|
| 120 | <artifactId>jdo2-api</artifactId>
|
| 121 | <version>2.3-ec</version>
|
| 122 | <scope>compile</scope>
|
| 123 | </dependency>
|
| 124 | <dependency>
|
| 125 | <groupId>com.facebook</groupId>
|
| 126 | <artifactId>libfb303</artifactId>
|
| 127 | <version>0.5.0</version>
|
| 128 | <scope>compile</scope>
|
| 129 | </dependency>
|
| 130 | <dependency>
|
| 131 | <groupId>org.apache.thrift</groupId>
|
| 132 | <artifactId>libthrift</artifactId>
|
| 133 | <version>0.5.0</version>
|
| 134 | <scope>compile</scope>
|
| 135 | </dependency>
|
| 136 | <dependency>
|
| 137 | <groupId>org.apache.commons</groupId>
|
| 138 | <artifactId>cli</artifactId>
|
| 139 | <version>1.2</version>
|
| 140 | <scope>compile</scope>
|
| 141 | </dependency>
|
| 142 | <dependency>
|
| 143 | <groupId>org.apache</groupId>
|
| 144 | <artifactId>log4j</artifactId>
|
| 145 | <version>1.2.15</version>
|
| 146 | <type>jar</type>
|
| 147 | <scope>compile</scope>
|
| 148 | </dependency>
|
| 149 | <dependency>
|
| 150 | <groupId>org.antlr</groupId>
|
| 151 | <artifactId>antlr-runtime</artifactId>
|
| 152 | <version>3.0.1</version>
|
| 153 | <scope>compile</scope>
|
| 154 | </dependency>
|
| 155 | <dependency>
|
| 156 | <groupId>org.apache.hadoop.hive</groupId>
|
| 157 | <artifactId>hive-cli</artifactId>
|
| 158 | <version>0.7.0</version>
|
| 159 | <type>jar</type>
|
| 160 | <scope>compile</scope>
|
| 161 | </dependency>
|
| 162 | <dependency>
|
| 163 | <groupId>org.apache.hadoop.hive</groupId>
|
| 164 | <artifactId>hive-common</artifactId>
|
| 165 | <version>0.7.0</version>
|
| 166 | <type>jar</type>
|
| 167 | <scope>compile</scope>
|
| 168 | </dependency>
|
| 169 | <dependency>
|
| 170 | <groupId>org.apache.hadoop.hive</groupId>
|
| 171 | <artifactId>hive-exec</artifactId>
|
| 172 | <version>0.7.0</version>
|
| 173 | <type>jar</type>
|
| 174 | <scope>compile</scope>
|
| 175 | </dependency>
|
| 176 | <dependency>
|
| 177 | <groupId>org.apache.hadoop.hive</groupId>
|
| 178 | <artifactId>hive-hwi</artifactId>
|
| 179 | <version>0.7.0</version>
|
| 180 | <type>jar</type>
|
| 181 | <scope>compile</scope>
|
| 182 | </dependency>
|
| 183 | <dependency>
|
| 184 | <groupId>org.apache.hadoop.hive</groupId>
|
| 185 | <artifactId>hive-jdbc</artifactId>
|
| 186 | <version>0.7.0</version>
|
| 187 | <type>jar</type>
|
| 188 | <scope>compile</scope>
|
| 189 | </dependency>
|
| 190 | <dependency>
|
| 191 | <groupId>org.apache.hadoop.hive</groupId>
|
| 192 | <artifactId>hive-metastore</artifactId>
|
| 193 | <version>0.7.0</version>
|
| 194 | <type>jar</type>
|
| 195 | <scope>compile</scope>
|
| 196 | </dependency>
|
| 197 | <dependency>
|
| 198 | <groupId>org.apache.hadoop.hive</groupId>
|
| 199 | <artifactId>hive-service</artifactId>
|
| 200 | <version>0.7.0</version>
|
| 201 | <type>jar</type>
|
| 202 | <scope>compile</scope>
|
| 203 | </dependency>
|
| 204 | <dependency>
|
| 205 | <groupId>org.apache.hadoop.hive</groupId>
|
| 206 | <artifactId>hive-shims</artifactId>
|
| 207 | <version>0.7.0</version>
|
| 208 | <type>jar</type>
|
| 209 | <scope>compile</scope>
|
| 210 | </dependency>
|
| 211 | <dependency>
|
| 212 | <groupId>org.apache.hadoop.hive</groupId>
|
| 213 | <artifactId>hive-serde</artifactId>
|
| 214 | <version>0.7.0</version>
|
| 215 | <type>jar</type>
|
| 216 | <scope>compile</scope>
|
| 217 | </dependency>
|
| 218 | <dependency>
|
| 219 | <groupId>org.slf4j</groupId>
|
| 220 | <artifactId>slf4j-api</artifactId>
|
| 221 | <version>1.6.1</version>
|
| 222 | <type>jar</type>
|
| 223 | <scope>compile</scope>
|
| 224 | </dependency>
|
| 225 | <dependency>
|
buyingyi | c73348c | 2012-11-02 00:31:31 +0000 | [diff] [blame] | 226 | <groupId>commons-cli</groupId>
|
| 227 | <artifactId>commons-cli</artifactId>
|
| 228 | <version>1.2</version>
|
| 229 | <type>jar</type>
|
| 230 | <scope>compile</scope>
|
| 231 | </dependency>
|
| 232 | <dependency>
|
| 233 | <groupId>org.slf4j</groupId>
|
| 234 | <artifactId>slf4j-log4j12</artifactId>
|
| 235 | <version>1.6.1</version>
|
| 236 | <type>jar</type>
|
| 237 | <scope>compile</scope>
|
| 238 | </dependency>
|
| 239 | <dependency>
|
| 240 | <groupId>org.apache.hadoop</groupId>
|
| 241 | <artifactId>hadoop-test</artifactId>
|
| 242 | <version>0.20.2</version>
|
| 243 | <type>jar</type>
|
| 244 | <scope>compile</scope>
|
| 245 | </dependency>
|
| 246 | <dependency>
|
| 247 | <groupId>commons-logging</groupId>
|
| 248 | <artifactId>commons-logging</artifactId>
|
| 249 | <version>1.1.1</version>
|
| 250 | <type>jar</type>
|
| 251 | <classifier>api</classifier>
|
| 252 | <scope>compile</scope>
|
| 253 | </dependency>
|
| 254 | <dependency>
|
| 255 | <groupId>com.google.guava</groupId>
|
| 256 | <artifactId>guava</artifactId>
|
| 257 | <version>r06</version>
|
| 258 | <type>jar</type>
|
| 259 | <scope>compile</scope>
|
| 260 | </dependency>
|
| 261 | <dependency>
|
buyingyi | c73348c | 2012-11-02 00:31:31 +0000 | [diff] [blame] | 262 | <groupId>org.antlr</groupId>
|
| 263 | <artifactId>stringtemplate</artifactId>
|
| 264 | <version>3.2</version>
|
| 265 | <type>jar</type>
|
| 266 | <scope>compile</scope>
|
| 267 | </dependency>
|
| 268 | <dependency>
|
| 269 | <groupId>org.apache.derby</groupId>
|
| 270 | <artifactId>derby</artifactId>
|
| 271 | <version>10.8.1.2</version>
|
| 272 | <type>jar</type>
|
| 273 | <scope>compile</scope>
|
| 274 | </dependency>
|
| 275 | <dependency>
|
| 276 | <groupId>org.apache.hbase</groupId>
|
| 277 | <artifactId>hbase</artifactId>
|
| 278 | <version>0.90.3</version>
|
| 279 | <type>jar</type>
|
| 280 | <scope>compile</scope>
|
| 281 | </dependency>
|
| 282 | <dependency>
|
| 283 | <groupId>edu.uci.ics.hyracks</groupId>
|
buyingyi | fe66916 | 2012-11-02 04:08:42 +0000 | [diff] [blame] | 284 | <artifactId>algebricks-compiler</artifactId>
|
| 285 | <version>0.2.3-SNAPSHOT</version>
|
buyingyi | c73348c | 2012-11-02 00:31:31 +0000 | [diff] [blame] | 286 | <type>jar</type>
|
| 287 | <scope>compile</scope>
|
| 288 | </dependency>
|
| 289 | <dependency>
|
| 290 | <groupId>edu.uci.ics.hyracks</groupId>
|
| 291 | <artifactId>hyracks-control-cc</artifactId>
|
buyingyi | fe66916 | 2012-11-02 04:08:42 +0000 | [diff] [blame] | 292 | <version>0.2.3-SNAPSHOT</version>
|
buyingyi | c73348c | 2012-11-02 00:31:31 +0000 | [diff] [blame] | 293 | <type>jar</type>
|
| 294 | <scope>compile</scope>
|
| 295 | </dependency>
|
| 296 | <dependency>
|
| 297 | <groupId>edu.uci.ics.hyracks</groupId>
|
| 298 | <artifactId>hyracks-control-nc</artifactId>
|
buyingyi | fe66916 | 2012-11-02 04:08:42 +0000 | [diff] [blame] | 299 | <version>0.2.3-SNAPSHOT</version>
|
buyingyi | c73348c | 2012-11-02 00:31:31 +0000 | [diff] [blame] | 300 | <type>jar</type>
|
| 301 | <scope>compile</scope>
|
| 302 | </dependency>
|
| 303 | </dependencies>
|
| 304 | <build>
|
| 305 | <plugins>
|
| 306 | <plugin>
|
| 307 | <groupId>org.apache.maven.plugins</groupId>
|
| 308 | <artifactId>maven-compiler-plugin</artifactId>
|
| 309 | <version>2.0.2</version>
|
| 310 | <configuration>
|
| 311 | <source>1.6</source>
|
| 312 | <target>1.6</target>
|
| 313 | </configuration>
|
| 314 | </plugin>
|
| 315 | <plugin>
|
| 316 | <groupId>org.codehaus.mojo</groupId>
|
| 317 | <artifactId>appassembler-maven-plugin</artifactId>
|
madhusudancs@gmail.com | 58f5056 | 2013-02-07 12:49:37 +0000 | [diff] [blame] | 318 | <version>1.3</version>
|
buyingyi | c73348c | 2012-11-02 00:31:31 +0000 | [diff] [blame] | 319 | <executions>
|
| 320 | <execution>
|
| 321 | <configuration>
|
| 322 | <programs>
|
| 323 | <program>
|
| 324 | <mainClass>edu.uci.ics.asterix.hive.cli.CliDriver</mainClass>
|
| 325 | <name>algebricks-hivesterix-cmd</name>
|
| 326 | </program>
|
| 327 | </programs>
|
| 328 | <repositoryLayout>flat</repositoryLayout>
|
| 329 | <repositoryName>lib</repositoryName>
|
| 330 | </configuration>
|
| 331 | <phase>package</phase>
|
| 332 | <goals>
|
| 333 | <goal>assemble</goal>
|
| 334 | </goals>
|
| 335 | </execution>
|
| 336 | </executions>
|
| 337 | </plugin>
|
| 338 | <plugin>
|
| 339 | <artifactId>maven-assembly-plugin</artifactId>
|
| 340 | <version>2.2-beta-5</version>
|
| 341 | <executions>
|
| 342 | <execution>
|
| 343 | <configuration>
|
| 344 | <descriptors>
|
| 345 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
|
| 346 | </descriptors>
|
| 347 | </configuration>
|
| 348 | <phase>package</phase>
|
| 349 | <goals>
|
| 350 | <goal>attached</goal>
|
| 351 | </goals>
|
| 352 | </execution>
|
| 353 | </executions>
|
| 354 | </plugin>
|
| 355 | <plugin>
|
| 356 | <groupId>org.apache.maven.plugins</groupId>
|
| 357 | <artifactId>maven-surefire-plugin</artifactId>
|
madhusudancs@gmail.com | 58f5056 | 2013-02-07 12:49:37 +0000 | [diff] [blame] | 358 | <version>2.13</version>
|
buyingyi | c73348c | 2012-11-02 00:31:31 +0000 | [diff] [blame] | 359 | <configuration>
|
| 360 | <forkMode>pertest</forkMode>
|
| 361 | <argLine>-enableassertions -Xmx2047m -Dfile.encoding=UTF-8
|
| 362 | -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
|
| 363 | <includes>
|
| 364 | <include>**/test/optimizer/*TestSuite.java</include>
|
| 365 | <include>**/test/optimizer/*Test.java</include>
|
| 366 | <include>**/test/runtimefunction/*TestSuite.java</include>
|
| 367 | <include>**/test/runtimefunction/*Test.java</include>
|
| 368 | </includes>
|
| 369 | </configuration>
|
| 370 | </plugin>
|
| 371 | <plugin>
|
| 372 | <artifactId>maven-resources-plugin</artifactId>
|
| 373 | <version>2.5</version>
|
| 374 | <executions>
|
| 375 | <execution>
|
| 376 | <id>copy-resources</id>
|
| 377 | <!-- here the phase you need -->
|
| 378 | <phase>package</phase>
|
| 379 | <goals>
|
| 380 | <goal>copy-resources</goal>
|
| 381 | </goals>
|
| 382 | <configuration>
|
| 383 | <outputDirectory>target/appassembler/bin</outputDirectory>
|
| 384 | <resources>
|
| 385 | <resource>
|
| 386 | <directory>resource/bin</directory>
|
| 387 | </resource>
|
| 388 | </resources>
|
| 389 | </configuration>
|
| 390 | </execution>
|
| 391 | <execution>
|
| 392 | <id>copy-conf</id>
|
| 393 | <!-- here the phase you need -->
|
| 394 | <phase>package</phase>
|
| 395 | <goals>
|
| 396 | <goal>copy-resources</goal>
|
| 397 | </goals>
|
| 398 | <configuration>
|
| 399 | <outputDirectory>target/appassembler/conf</outputDirectory>
|
| 400 | <resources>
|
| 401 | <resource>
|
| 402 | <directory>conf</directory>
|
| 403 | </resource>
|
| 404 | </resources>
|
| 405 | </configuration>
|
| 406 | </execution>
|
| 407 | <execution>
|
| 408 | <id>copy-asterix</id>
|
| 409 | <!-- here the phase you need -->
|
| 410 | <phase>package</phase>
|
| 411 | <goals>
|
| 412 | <goal>copy-resources</goal>
|
| 413 | </goals>
|
| 414 | <configuration>
|
| 415 | <outputDirectory>target/appassembler/asterix</outputDirectory>
|
| 416 | <resources>
|
| 417 | <resource>
|
| 418 | <directory>resource/asterix</directory>
|
| 419 | </resource>
|
| 420 | </resources>
|
| 421 | </configuration>
|
| 422 | </execution>
|
| 423 | <execution>
|
| 424 | <id>copy-asterix-dbg</id>
|
| 425 | <!-- here the phase you need -->
|
| 426 | <phase>package</phase>
|
| 427 | <goals>
|
| 428 | <goal>copy-resources</goal>
|
| 429 | </goals>
|
| 430 | <configuration>
|
| 431 | <outputDirectory>target/appassembler/asterix_dbg</outputDirectory>
|
| 432 | <resources>
|
| 433 | <resource>
|
| 434 | <directory>resource/asterix_dbg</directory>
|
| 435 | </resource>
|
| 436 | </resources>
|
| 437 | </configuration>
|
| 438 | </execution>
|
| 439 | <execution>
|
| 440 | <id>copy-hivesterix</id>
|
| 441 | <!-- here the phase you need -->
|
| 442 | <phase>package</phase>
|
| 443 | <goals>
|
| 444 | <goal>copy-resources</goal>
|
| 445 | </goals>
|
| 446 | <configuration>
|
| 447 | <outputDirectory>target/appassembler/hivesterix</outputDirectory>
|
| 448 | <resources>
|
| 449 | <resource>
|
| 450 | <directory>resource/hivesterix</directory>
|
| 451 | </resource>
|
| 452 | </resources>
|
| 453 | </configuration>
|
| 454 | </execution>
|
| 455 | <execution>
|
| 456 | <id>copy-conf2</id>
|
| 457 | <!-- here the phase you need -->
|
| 458 | <phase>package</phase>
|
| 459 | <goals>
|
| 460 | <goal>copy-resources</goal>
|
| 461 | </goals>
|
| 462 | <configuration>
|
| 463 | <outputDirectory>target/appassembler/hivesterix/conf</outputDirectory>
|
| 464 | <resources>
|
| 465 | <resource>
|
| 466 | <directory>conf</directory>
|
| 467 | </resource>
|
| 468 | </resources>
|
| 469 | </configuration>
|
| 470 | </execution>
|
| 471 | <execution>
|
| 472 | <id>copy-data</id>
|
| 473 | <!-- here the phase you need -->
|
| 474 | <phase>package</phase>
|
| 475 | <goals>
|
| 476 | <goal>copy-resources</goal>
|
| 477 | </goals>
|
| 478 | <configuration>
|
| 479 | <outputDirectory>data</outputDirectory>
|
| 480 | <resources>
|
| 481 | <resource>
|
| 482 | <directory>resource/data</directory>
|
| 483 | </resource>
|
| 484 | </resources>
|
| 485 | </configuration>
|
| 486 | </execution>
|
| 487 | </executions>
|
| 488 | </plugin>
|
| 489 | <plugin>
|
| 490 | <artifactId>maven-clean-plugin</artifactId>
|
madhusudancs@gmail.com | 58f5056 | 2013-02-07 12:49:37 +0000 | [diff] [blame] | 491 | <version>2.5</version>
|
buyingyi | c73348c | 2012-11-02 00:31:31 +0000 | [diff] [blame] | 492 | <configuration>
|
| 493 | <filesets>
|
| 494 | <fileset>
|
| 495 | <directory>.</directory>
|
| 496 | <includes>
|
| 497 | <include>metastore*</include>
|
| 498 | <include>hadoop*</include>
|
| 499 | <include>edu*</include>
|
| 500 | <include>tmp*</include>
|
| 501 | <include>build*</include>
|
| 502 | <include>target*</include>
|
| 503 | <include>log*</include>
|
| 504 | <include>derby.log</include>
|
| 505 | <include>ClusterController*</include>
|
| 506 | </includes>
|
| 507 | </fileset>
|
| 508 | </filesets>
|
| 509 | </configuration>
|
| 510 | </plugin>
|
| 511 | </plugins>
|
| 512 | </build>
|
| 513 | <repositories>
|
| 514 | <repository>
|
| 515 | <releases>
|
| 516 | <enabled>true</enabled>
|
| 517 | <updatePolicy>always</updatePolicy>
|
| 518 | <checksumPolicy>warn</checksumPolicy>
|
| 519 | </releases>
|
| 520 | <snapshots>
|
| 521 | <enabled>true</enabled>
|
| 522 | <updatePolicy>always</updatePolicy>
|
| 523 | <checksumPolicy>fail</checksumPolicy>
|
| 524 | </snapshots>
|
| 525 | <id>third-party</id>
|
| 526 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party</url>
|
| 527 | </repository>
|
| 528 | <repository>
|
| 529 | <releases>
|
| 530 | <enabled>true</enabled>
|
| 531 | <updatePolicy>always</updatePolicy>
|
| 532 | <checksumPolicy>warn</checksumPolicy>
|
| 533 | </releases>
|
| 534 | <snapshots>
|
| 535 | <enabled>true</enabled>
|
| 536 | <updatePolicy>always</updatePolicy>
|
| 537 | <checksumPolicy>fail</checksumPolicy>
|
| 538 | </snapshots>
|
| 539 | <id>hyracks-public-release</id>
|
| 540 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-public-releases</url>
|
| 541 | </repository>
|
| 542 | </repositories>
|
| 543 | <distributionManagement>
|
| 544 | <!-- use the following if you're not using a snapshot version. -->
|
| 545 | <repository>
|
| 546 | <id>hivesterix</id>
|
| 547 | <name>hivesterix</name>
|
| 548 | <url>scp://obelix.ics.uci.edu/nexus/content/groups/hivesterix-public</url>
|
| 549 | </repository>
|
| 550 | <!-- use the following if you ARE using a snapshot version. -->
|
| 551 | <snapshotRepository>
|
| 552 | <id>hivesterix</id>
|
| 553 | <name>Repository Name</name>
|
| 554 | <url>scp://obelix.ics.uci.edu/nexus/content/groups/hivesterix-public</url>
|
| 555 | </snapshotRepository>
|
| 556 | </distributionManagement>
|
| 557 | </project>
|