vinayakb | 8a1a718 | 2013-04-07 01:45:00 +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"> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <parent> |
| 4 | <artifactId>asterix</artifactId> |
| 5 | <groupId>edu.uci.ics.asterix</groupId> |
vinayakb | 8c7ffcd | 2013-04-07 01:45:14 +0000 | [diff] [blame] | 6 | <version>0.0.5-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 7 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 8 | <artifactId>asterix-algebra</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 9 | |
| 10 | <build> |
| 11 | <plugins> |
| 12 | <plugin> |
| 13 | <groupId>org.apache.maven.plugins</groupId> |
| 14 | <artifactId>maven-compiler-plugin</artifactId> |
| 15 | <version>2.0.2</version> |
| 16 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 17 | <source>1.7</source> |
| 18 | <target>1.7</target> |
| 19 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 20 | </configuration> |
| 21 | </plugin> |
| 22 | <plugin> |
| 23 | <groupId>org.codehaus.mojo</groupId> |
| 24 | <artifactId>javacc-maven-plugin</artifactId> |
| 25 | <version>2.6</version> |
| 26 | <executions> |
| 27 | <execution> |
| 28 | <id>javacc</id> |
| 29 | <goals> |
| 30 | <goal>javacc</goal> |
| 31 | </goals> |
| 32 | <configuration> |
| 33 | <isStatic>false</isStatic> |
| 34 | </configuration> |
| 35 | </execution> |
| 36 | </executions> |
| 37 | </plugin> |
| 38 | </plugins> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 39 | <pluginManagement> |
| 40 | <plugins> |
| 41 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 42 | <plugin> |
| 43 | <groupId>org.eclipse.m2e</groupId> |
| 44 | <artifactId>lifecycle-mapping</artifactId> |
| 45 | <version>1.0.0</version> |
| 46 | <configuration> |
| 47 | <lifecycleMappingMetadata> |
| 48 | <pluginExecutions> |
| 49 | <pluginExecution> |
| 50 | <pluginExecutionFilter> |
| 51 | <groupId> |
| 52 | org.codehaus.mojo |
| 53 | </groupId> |
| 54 | <artifactId> |
| 55 | javacc-maven-plugin |
| 56 | </artifactId> |
| 57 | <versionRange> |
| 58 | [2.6,) |
| 59 | </versionRange> |
| 60 | <goals> |
| 61 | <goal>javacc</goal> |
| 62 | </goals> |
| 63 | </pluginExecutionFilter> |
| 64 | <action> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 65 | <ignore /> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 66 | </action> |
| 67 | </pluginExecution> |
| 68 | </pluginExecutions> |
| 69 | </lifecycleMappingMetadata> |
| 70 | </configuration> |
| 71 | </plugin> |
| 72 | </plugins> |
| 73 | </pluginManagement> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 74 | </build> |
| 75 | |
| 76 | <dependencies> |
| 77 | <dependency> |
| 78 | <groupId>edu.uci.ics.asterix</groupId> |
| 79 | <artifactId>asterix-runtime</artifactId> |
vinayakb | 8c7ffcd | 2013-04-07 01:45:14 +0000 | [diff] [blame] | 80 | <version>0.0.5-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 81 | <scope>compile</scope> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>edu.uci.ics.asterix</groupId> |
| 85 | <artifactId>asterix-aql</artifactId> |
vinayakb | 8c7ffcd | 2013-04-07 01:45:14 +0000 | [diff] [blame] | 86 | <version>0.0.5-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 87 | <scope>compile</scope> |
| 88 | </dependency> |
| 89 | <dependency> |
| 90 | <groupId>edu.uci.ics.asterix</groupId> |
| 91 | <artifactId>asterix-metadata</artifactId> |
vinayakb | 8c7ffcd | 2013-04-07 01:45:14 +0000 | [diff] [blame] | 92 | <version>0.0.5-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 93 | <scope>compile</scope> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 97 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>org.json</groupId> |
| 101 | <artifactId>json</artifactId> |
| 102 | <version>20090211</version> |
| 103 | <type>jar</type> |
| 104 | <scope>compile</scope> |
| 105 | </dependency> |
| 106 | </dependencies> |
| 107 | </project> |