blob: da3d5d0aab021a85f182e6981188fe859b5ae33d [file] [log] [blame]
jarodwen5a028142012-09-06 04:26:52 +00001<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">
vinayakb38b7ca42012-03-05 05:44:15 +00003 <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>
jarodwen5a028142012-09-06 04:26:52 +000059 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakbf5ee3b82012-03-23 01:09:46 +000060 <version>0.2.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000061 </dependency>
62 <dependency>
jarodwen5a028142012-09-06 04:26:52 +000063 <groupId>edu.uci.ics.asterix</groupId>
64 <artifactId>asterix-transactions</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000065 <version>0.0.4-SNAPSHOT</version>
66 <scope>compile</scope>
67 </dependency>
68 <dependency>
jarodwen5a028142012-09-06 04:26:52 +000069 <groupId>org.twitter4j</groupId>
70 <artifactId>twitter4j-core</artifactId>
71 <version>2.2.3</version>
vinayakb38b7ca42012-03-05 05:44:15 +000072 </dependency>
73 <dependency>
jarodwen5a028142012-09-06 04:26:52 +000074 <groupId>org.apache.hadoop</groupId>
75 <artifactId>hadoop-core</artifactId>
76 <version>0.20.2</version>
77 <type>jar</type>
78 <scope>compile</scope>
vinayakb38b7ca42012-03-05 05:44:15 +000079 </dependency>
80 </dependencies>
81
82</project>
83