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