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> |
Vinayak Borkar | 726f392 | 2013-04-25 14:32:21 -0700 | [diff] [blame] | 6 | <version>0.0.6-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> |
JArod | 2c5e06a | 2013-05-18 16:40:22 -0700 | [diff] [blame] | 44 | <plugin> |
| 45 | <groupId>org.codehaus.mojo</groupId> |
| 46 | <artifactId>build-helper-maven-plugin</artifactId> |
| 47 | <executions> |
| 48 | <execution> |
| 49 | <id>add-source</id> |
| 50 | <phase>generate-sources</phase> |
| 51 | <goals> |
| 52 | <goal>add-source</goal> |
| 53 | </goals> |
| 54 | <configuration> |
| 55 | <sources> |
| 56 | <source>${project.build.directory}/generated-sources/javacc/</source> |
| 57 | </sources> |
| 58 | </configuration> |
| 59 | </execution> |
| 60 | </executions> |
| 61 | </plugin> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 62 | </plugins> |
vinayakb | ac7e7ce | 2012-03-05 06:51:17 +0000 | [diff] [blame] | 63 | <pluginManagement> |
| 64 | <plugins> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 65 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 66 | only. It has no influence on the Maven build itself. --> |
vinayakb | ac7e7ce | 2012-03-05 06:51:17 +0000 | [diff] [blame] | 67 | <plugin> |
| 68 | <groupId>org.eclipse.m2e</groupId> |
| 69 | <artifactId>lifecycle-mapping</artifactId> |
| 70 | <version>1.0.0</version> |
| 71 | <configuration> |
| 72 | <lifecycleMappingMetadata> |
| 73 | <pluginExecutions> |
| 74 | <pluginExecution> |
| 75 | <pluginExecutionFilter> |
| 76 | <groupId> |
| 77 | org.codehaus.mojo |
| 78 | </groupId> |
| 79 | <artifactId> |
| 80 | javacc-maven-plugin |
| 81 | </artifactId> |
| 82 | <versionRange> |
| 83 | [2.6,) |
| 84 | </versionRange> |
| 85 | <goals> |
| 86 | <goal>jjdoc</goal> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 87 | <goal>javacc</goal> |
vinayakb | ac7e7ce | 2012-03-05 06:51:17 +0000 | [diff] [blame] | 88 | </goals> |
| 89 | </pluginExecutionFilter> |
| 90 | <action> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 91 | <ignore /> |
vinayakb | ac7e7ce | 2012-03-05 06:51:17 +0000 | [diff] [blame] | 92 | </action> |
| 93 | </pluginExecution> |
| 94 | </pluginExecutions> |
| 95 | </lifecycleMappingMetadata> |
| 96 | </configuration> |
| 97 | </plugin> |
| 98 | </plugins> |
| 99 | </pluginManagement> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 100 | </build> |
| 101 | |
| 102 | <dependencies> |
| 103 | <dependency> |
| 104 | <groupId>edu.uci.ics.asterix</groupId> |
| 105 | <artifactId>asterix-common</artifactId> |
Vinayak Borkar | 726f392 | 2013-04-25 14:32:21 -0700 | [diff] [blame] | 106 | <version>0.0.6-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.asterix</groupId> |
| 111 | <artifactId>asterix-om</artifactId> |
Vinayak Borkar | 726f392 | 2013-04-25 14:32:21 -0700 | [diff] [blame] | 112 | <version>0.0.6-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 113 | <scope>compile</scope> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>edu.uci.ics.asterix</groupId> |
| 117 | <artifactId>asterix-metadata</artifactId> |
Vinayak Borkar | 726f392 | 2013-04-25 14:32:21 -0700 | [diff] [blame] | 118 | <version>0.0.6-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 119 | <scope>compile</scope> |
| 120 | </dependency> |
| 121 | <dependency> |
| 122 | <groupId>edu.uci.ics.fuzzyjoin</groupId> |
| 123 | <artifactId>fuzzyjoin-core</artifactId> |
| 124 | <version>0.0.3</version> |
| 125 | <scope>compile</scope> |
| 126 | </dependency> |
| 127 | </dependencies> |
| 128 | |
| 129 | </project> |