blob: 77952a632bb97b74d68c4d26a4cafd0157b50e85 [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>
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>
vinayakb88afc462012-10-01 15:56:21 +000059 <version>0.2.2-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000060 </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