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-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> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 16 | <source>1.7</source> |
| 17 | <target>1.7</target> |
| 18 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 19 | </configuration> |
| 20 | </plugin> |
| 21 | <plugin> |
| 22 | <groupId>org.codehaus.mojo</groupId> |
| 23 | <artifactId>javacc-maven-plugin</artifactId> |
| 24 | <version>2.6</version> |
| 25 | <executions> |
| 26 | <execution> |
| 27 | <id>javacc</id> |
| 28 | <goals> |
| 29 | <goal>javacc</goal> |
| 30 | </goals> |
| 31 | <configuration> |
| 32 | <isStatic>false</isStatic> |
| 33 | </configuration> |
| 34 | </execution> |
| 35 | <execution> |
| 36 | <id>javacc-jjdoc</id> |
| 37 | <goals> |
| 38 | <goal>jjdoc</goal> |
| 39 | </goals> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 40 | <phase>process-sources</phase> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 41 | </execution> |
| 42 | </executions> |
| 43 | </plugin> |
| 44 | </plugins> |
vinayakb | ac7e7ce | 2012-03-05 06:51:17 +0000 | [diff] [blame] | 45 | <pluginManagement> |
| 46 | <plugins> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 47 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 48 | only. It has no influence on the Maven build itself. --> |
vinayakb | ac7e7ce | 2012-03-05 06:51:17 +0000 | [diff] [blame] | 49 | <plugin> |
| 50 | <groupId>org.eclipse.m2e</groupId> |
| 51 | <artifactId>lifecycle-mapping</artifactId> |
| 52 | <version>1.0.0</version> |
| 53 | <configuration> |
| 54 | <lifecycleMappingMetadata> |
| 55 | <pluginExecutions> |
| 56 | <pluginExecution> |
| 57 | <pluginExecutionFilter> |
| 58 | <groupId> |
| 59 | org.codehaus.mojo |
| 60 | </groupId> |
| 61 | <artifactId> |
| 62 | javacc-maven-plugin |
| 63 | </artifactId> |
| 64 | <versionRange> |
| 65 | [2.6,) |
| 66 | </versionRange> |
| 67 | <goals> |
| 68 | <goal>jjdoc</goal> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 69 | <goal>javacc</goal> |
vinayakb | ac7e7ce | 2012-03-05 06:51:17 +0000 | [diff] [blame] | 70 | </goals> |
| 71 | </pluginExecutionFilter> |
| 72 | <action> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 73 | <ignore /> |
vinayakb | ac7e7ce | 2012-03-05 06:51:17 +0000 | [diff] [blame] | 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> |
ramangrover29 | 00560cc | 2013-04-22 02:24:02 -0700 | [diff] [blame^] | 85 | <dependency> |
| 86 | <groupId>junit</groupId> |
| 87 | <artifactId>junit</artifactId> |
| 88 | <version>4.8.1</version> |
| 89 | <scope>test</scope> |
| 90 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 91 | <dependency> |
| 92 | <groupId>edu.uci.ics.asterix</groupId> |
| 93 | <artifactId>asterix-common</artifactId> |
vinayakb | 8c7ffcd | 2013-04-07 01:45:14 +0000 | [diff] [blame] | 94 | <version>0.0.5-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 95 | <scope>compile</scope> |
| 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>edu.uci.ics.asterix</groupId> |
| 99 | <artifactId>asterix-om</artifactId> |
vinayakb | 8c7ffcd | 2013-04-07 01:45:14 +0000 | [diff] [blame] | 100 | <version>0.0.5-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 101 | <scope>compile</scope> |
| 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>edu.uci.ics.asterix</groupId> |
| 105 | <artifactId>asterix-metadata</artifactId> |
vinayakb | 8c7ffcd | 2013-04-07 01:45:14 +0000 | [diff] [blame] | 106 | <version>0.0.5-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 107 | <scope>compile</scope> |
| 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>edu.uci.ics.fuzzyjoin</groupId> |
| 111 | <artifactId>fuzzyjoin-core</artifactId> |
| 112 | <version>0.0.3</version> |
| 113 | <scope>compile</scope> |
| 114 | </dependency> |
| 115 | </dependencies> |
| 116 | |
| 117 | </project> |