vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 1 | <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"> |
| 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <parent> |
| 4 | <artifactId>asterix</artifactId> |
| 5 | <groupId>edu.uci.ics.asterix</groupId> |
| 6 | <version>0.0.4-SNAPSHOT</version> |
| 7 | </parent> |
| 8 | <groupId>edu.uci.ics.asterix</groupId> |
| 9 | <artifactId>asterix-transactions</artifactId> |
| 10 | <version>0.0.4-SNAPSHOT</version> |
| 11 | |
| 12 | <build> |
| 13 | <plugins> |
| 14 | <plugin> |
| 15 | <groupId>org.apache.maven.plugins</groupId> |
| 16 | <artifactId>maven-compiler-plugin</artifactId> |
| 17 | <version>2.0.2</version> |
| 18 | <configuration> |
| 19 | <source>1.6</source> |
| 20 | <target>1.6</target> |
| 21 | </configuration> |
| 22 | </plugin> |
| 23 | </plugins> |
| 24 | |
| 25 | </build> |
| 26 | |
| 27 | <dependencies> |
zheilbron | bacc745 | 2012-05-09 08:15:04 +0000 | [diff] [blame] | 28 | <dependency> |
| 29 | <groupId>edu.uci.ics.hyracks</groupId> |
| 30 | <artifactId>hyracks-storage-am-common</artifactId> |
vinayakb | 88afc46 | 2012-10-01 15:56:21 +0000 | [diff] [blame] | 31 | <version>0.2.2-SNAPSHOT</version> |
zheilbron | bacc745 | 2012-05-09 08:15:04 +0000 | [diff] [blame] | 32 | <type>jar</type> |
| 33 | <scope>compile</scope> |
| 34 | </dependency> |
kisskys | 3a40b33 | 2012-10-05 20:12:51 +0000 | [diff] [blame] | 35 | <dependency> |
| 36 | <groupId>edu.uci.ics.hyracks</groupId> |
alexander.behm | 01e5702 | 2012-10-27 02:16:28 +0000 | [diff] [blame] | 37 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
kisskys | 3a40b33 | 2012-10-05 20:12:51 +0000 | [diff] [blame] | 38 | <version>0.2.2-SNAPSHOT</version> |
| 39 | </dependency> |
alexander.behm | 7ba710d | 2012-10-31 03:53:45 +0000 | [diff] [blame^] | 40 | <dependency> |
| 41 | <groupId>edu.uci.ics.hyracks</groupId> |
| 42 | <artifactId>hyracks-storage-am-lsm-rtree</artifactId> |
| 43 | <version>0.2.2-SNAPSHOT</version> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>edu.uci.ics.hyracks</groupId> |
| 47 | <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId> |
| 48 | <version>0.2.2-SNAPSHOT</version> |
| 49 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 50 | </dependencies> |
alexander.behm | 7ba710d | 2012-10-31 03:53:45 +0000 | [diff] [blame^] | 51 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 52 | </project> |