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-algebra</artifactId> |
| 10 | <version>0.0.4-SNAPSHOT</version> |
| 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> |
| 19 | <source>1.6</source> |
| 20 | <target>1.6</target> |
| 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-runtime</artifactId> |
| 46 | <version>0.0.4-SNAPSHOT</version> |
| 47 | <scope>compile</scope> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>edu.uci.ics.asterix</groupId> |
| 51 | <artifactId>asterix-aql</artifactId> |
| 52 | <version>0.0.4-SNAPSHOT</version> |
| 53 | <scope>compile</scope> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>edu.uci.ics.asterix</groupId> |
| 57 | <artifactId>asterix-metadata</artifactId> |
| 58 | <version>0.0.4-SNAPSHOT</version> |
| 59 | <scope>compile</scope> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>edu.uci.ics.hyracks</groupId> |
| 63 | <artifactId>hyracks-algebricks-compiler</artifactId> |
vinayakb | f5ee3b8 | 2012-03-23 01:09:46 +0000 | [diff] [blame] | 64 | <version>0.2.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.json</groupId> |
| 68 | <artifactId>json</artifactId> |
| 69 | <version>20090211</version> |
| 70 | <type>jar</type> |
| 71 | <scope>compile</scope> |
| 72 | </dependency> |
| 73 | </dependencies> |
| 74 | </project> |