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