zheilbron | 5e741de | 2013-02-16 21:34:39 +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/xsd/maven-4.0.0.xsd"> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <artifactId>asterix</artifactId> |
| 6 | <groupId>edu.uci.ics.asterix</groupId> |
| 7 | <version>0.0.4-SNAPSHOT</version> |
| 8 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 9 | <artifactId>asterix-transactions</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 10 | |
| 11 | <build> |
| 12 | <plugins> |
| 13 | <plugin> |
| 14 | <groupId>org.apache.maven.plugins</groupId> |
| 15 | <artifactId>maven-compiler-plugin</artifactId> |
| 16 | <version>2.0.2</version> |
| 17 | <configuration> |
zheilbron | 5e741de | 2013-02-16 21:34:39 +0000 | [diff] [blame] | 18 | <source>1.7</source> |
| 19 | <target>1.7</target> |
buyingyi | 8a61a18 | 2013-03-03 08:41:25 +0000 | [diff] [blame] | 20 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 21 | </configuration> |
| 22 | </plugin> |
| 23 | </plugins> |
| 24 | |
| 25 | </build> |
| 26 | |
| 27 | <dependencies> |
zheilbron | 5e741de | 2013-02-16 21:34:39 +0000 | [diff] [blame] | 28 | <dependency> |
| 29 | <groupId>edu.uci.ics.hyracks</groupId> |
| 30 | <artifactId>hyracks-storage-am-common</artifactId> |
| 31 | </dependency> |
kisskys | f4c3324 | 2013-03-13 06:11:01 +0000 | [diff] [blame] | 32 | <dependency> |
| 33 | <groupId>edu.uci.ics.hyracks</groupId> |
| 34 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
| 35 | <version>0.2.3-SNAPSHOT</version> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>edu.uci.ics.hyracks</groupId> |
| 39 | <artifactId>hyracks-storage-am-lsm-rtree</artifactId> |
| 40 | <version>0.2.3-SNAPSHOT</version> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>edu.uci.ics.hyracks</groupId> |
| 44 | <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId> |
| 45 | <version>0.2.3-SNAPSHOT</version> |
| 46 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 47 | </dependencies> |
kisskys | f4c3324 | 2013-03-13 06:11:01 +0000 | [diff] [blame] | 48 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 49 | </project> |