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> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 8 | <artifactId>asterix-aql</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 9 | <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 | <execution> |
| 35 | <id>javacc-jjdoc</id> |
| 36 | <goals> |
| 37 | <goal>jjdoc</goal> |
| 38 | </goals> |
| 39 | <phase>process-sources</phase> |
| 40 | </execution> |
| 41 | </executions> |
| 42 | </plugin> |
| 43 | </plugins> |
vinayakb | ac7e7ce | 2012-03-05 06:51:17 +0000 | [diff] [blame] | 44 | <pluginManagement> |
| 45 | <plugins> |
| 46 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 47 | <plugin> |
| 48 | <groupId>org.eclipse.m2e</groupId> |
| 49 | <artifactId>lifecycle-mapping</artifactId> |
| 50 | <version>1.0.0</version> |
| 51 | <configuration> |
| 52 | <lifecycleMappingMetadata> |
| 53 | <pluginExecutions> |
| 54 | <pluginExecution> |
| 55 | <pluginExecutionFilter> |
| 56 | <groupId> |
| 57 | org.codehaus.mojo |
| 58 | </groupId> |
| 59 | <artifactId> |
| 60 | javacc-maven-plugin |
| 61 | </artifactId> |
| 62 | <versionRange> |
| 63 | [2.6,) |
| 64 | </versionRange> |
| 65 | <goals> |
| 66 | <goal>jjdoc</goal> |
| 67 | </goals> |
| 68 | </pluginExecutionFilter> |
| 69 | <action> |
| 70 | <ignore></ignore> |
| 71 | </action> |
| 72 | </pluginExecution> |
| 73 | </pluginExecutions> |
| 74 | </lifecycleMappingMetadata> |
| 75 | </configuration> |
| 76 | </plugin> |
| 77 | </plugins> |
| 78 | </pluginManagement> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 79 | </build> |
| 80 | |
| 81 | <dependencies> |
| 82 | <dependency> |
| 83 | <groupId>edu.uci.ics.asterix</groupId> |
| 84 | <artifactId>asterix-common</artifactId> |
| 85 | <version>0.0.4-SNAPSHOT</version> |
| 86 | <scope>compile</scope> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>edu.uci.ics.asterix</groupId> |
| 90 | <artifactId>asterix-om</artifactId> |
| 91 | <version>0.0.4-SNAPSHOT</version> |
| 92 | <scope>compile</scope> |
| 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>edu.uci.ics.asterix</groupId> |
| 96 | <artifactId>asterix-metadata</artifactId> |
| 97 | <version>0.0.4-SNAPSHOT</version> |
| 98 | <scope>compile</scope> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>edu.uci.ics.fuzzyjoin</groupId> |
| 102 | <artifactId>fuzzyjoin-core</artifactId> |
| 103 | <version>0.0.3</version> |
| 104 | <scope>compile</scope> |
| 105 | </dependency> |
| 106 | </dependencies> |
| 107 | |
| 108 | </project> |