zheilbron | 5e741de | 2013-02-16 21:34:39 +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-algebra</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 10 | |
| 11 | <build> |
| 12 | <plugins> |
| 13 | <plugin> |
| 14 | <groupId>org.apache.maven.plugins</groupId> |
| 15 | <artifactId>maven-compiler-plugin</artifactId> |
| 16 | <version>2.0.2</version> |
| 17 | <configuration> |
zheilbron | 5e741de | 2013-02-16 21:34:39 +0000 | [diff] [blame] | 18 | <source>1.7</source> |
| 19 | <target>1.7</target> |
buyingyi | 8a61a18 | 2013-03-03 08:41:25 +0000 | [diff] [blame] | 20 | <fork>true</fork> |
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-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> |
jarodwen | 1c0fa2a | 2013-02-03 05:46:59 +0000 | [diff] [blame] | 63 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.json</groupId> |
| 67 | <artifactId>json</artifactId> |
| 68 | <version>20090211</version> |
| 69 | <type>jar</type> |
| 70 | <scope>compile</scope> |
| 71 | </dependency> |
| 72 | </dependencies> |
| 73 | </project> |