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