jarodwen | 5a02814 | 2012-09-06 04:26:52 +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> |
| 9 | <groupId>edu.uci.ics.asterix</groupId> |
| 10 | <artifactId>asterix-runtime</artifactId> |
| 11 | <version>0.0.4-SNAPSHOT</version> |
| 12 | |
| 13 | |
| 14 | <build> |
| 15 | <plugins> |
| 16 | <plugin> |
| 17 | <groupId>org.apache.maven.plugins</groupId> |
| 18 | <artifactId>maven-compiler-plugin</artifactId> |
| 19 | <version>2.0.2</version> |
| 20 | <configuration> |
| 21 | <source>1.6</source> |
| 22 | <target>1.6</target> |
| 23 | </configuration> |
| 24 | </plugin> |
| 25 | <plugin> |
| 26 | <groupId>org.codehaus.mojo</groupId> |
| 27 | <artifactId>javacc-maven-plugin</artifactId> |
| 28 | <version>2.6</version> |
| 29 | <executions> |
| 30 | <execution> |
| 31 | <id>javacc</id> |
| 32 | <goals> |
| 33 | <goal>javacc</goal> |
| 34 | </goals> |
| 35 | <configuration> |
| 36 | <isStatic>false</isStatic> |
| 37 | </configuration> |
| 38 | </execution> |
| 39 | </executions> |
| 40 | </plugin> |
| 41 | </plugins> |
| 42 | </build> |
| 43 | |
| 44 | <dependencies> |
| 45 | <dependency> |
| 46 | <groupId>edu.uci.ics.asterix</groupId> |
| 47 | <artifactId>asterix-om</artifactId> |
| 48 | <version>0.0.4-SNAPSHOT</version> |
| 49 | <scope>compile</scope> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>edu.uci.ics.fuzzyjoin</groupId> |
| 53 | <artifactId>fuzzyjoin-core</artifactId> |
| 54 | <version>0.0.3</version> |
| 55 | <scope>compile</scope> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>edu.uci.ics.hyracks</groupId> |
jarodwen | 5a02814 | 2012-09-06 04:26:52 +0000 | [diff] [blame] | 59 | <artifactId>hyracks-storage-am-btree</artifactId> |
vinayakb | f5ee3b8 | 2012-03-23 01:09:46 +0000 | [diff] [blame] | 60 | <version>0.2.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 61 | </dependency> |
| 62 | <dependency> |
jarodwen | 5a02814 | 2012-09-06 04:26:52 +0000 | [diff] [blame] | 63 | <groupId>edu.uci.ics.asterix</groupId> |
| 64 | <artifactId>asterix-transactions</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 65 | <version>0.0.4-SNAPSHOT</version> |
| 66 | <scope>compile</scope> |
| 67 | </dependency> |
| 68 | <dependency> |
jarodwen | 5a02814 | 2012-09-06 04:26:52 +0000 | [diff] [blame] | 69 | <groupId>org.twitter4j</groupId> |
| 70 | <artifactId>twitter4j-core</artifactId> |
| 71 | <version>2.2.3</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 72 | </dependency> |
| 73 | <dependency> |
jarodwen | 5a02814 | 2012-09-06 04:26:52 +0000 | [diff] [blame] | 74 | <groupId>org.apache.hadoop</groupId> |
| 75 | <artifactId>hadoop-core</artifactId> |
| 76 | <version>0.20.2</version> |
| 77 | <type>jar</type> |
| 78 | <scope>compile</scope> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 79 | </dependency> |
| 80 | </dependencies> |
| 81 | |
| 82 | </project> |
| 83 | |