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