Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ! Copyright 2009-2013 by The Regents of the University of California |
| 3 | ! Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | ! you may not use this file except in compliance with the License. |
| 5 | ! you may obtain a copy of the License from |
| 6 | ! |
| 7 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | ! |
| 9 | ! Unless required by applicable law or agreed to in writing, software |
| 10 | ! distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | ! See the License for the specific language governing permissions and |
| 13 | ! limitations under the License. |
| 14 | !--> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 15 | <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] | 16 | <modelVersion>4.0.0</modelVersion> |
| 17 | <parent> |
| 18 | <artifactId>asterix</artifactId> |
| 19 | <groupId>edu.uci.ics.asterix</groupId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 20 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 21 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 22 | <artifactId>asterix-aql</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 23 | <build> |
| 24 | <plugins> |
| 25 | <plugin> |
| 26 | <groupId>org.apache.maven.plugins</groupId> |
| 27 | <artifactId>maven-compiler-plugin</artifactId> |
| 28 | <version>2.0.2</version> |
| 29 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 30 | <source>1.7</source> |
| 31 | <target>1.7</target> |
| 32 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 33 | </configuration> |
| 34 | </plugin> |
| 35 | <plugin> |
| 36 | <groupId>org.codehaus.mojo</groupId> |
| 37 | <artifactId>javacc-maven-plugin</artifactId> |
| 38 | <version>2.6</version> |
| 39 | <executions> |
| 40 | <execution> |
| 41 | <id>javacc</id> |
| 42 | <goals> |
| 43 | <goal>javacc</goal> |
| 44 | </goals> |
| 45 | <configuration> |
| 46 | <isStatic>false</isStatic> |
icetindil | f4b2f75 | 2013-05-30 20:26:52 -0700 | [diff] [blame] | 47 | <javaUnicodeEscape>true</javaUnicodeEscape> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 48 | </configuration> |
| 49 | </execution> |
| 50 | <execution> |
| 51 | <id>javacc-jjdoc</id> |
| 52 | <goals> |
| 53 | <goal>jjdoc</goal> |
| 54 | </goals> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 55 | <phase>process-sources</phase> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 56 | </execution> |
| 57 | </executions> |
| 58 | </plugin> |
JArod | 2c5e06a | 2013-05-18 16:40:22 -0700 | [diff] [blame] | 59 | <plugin> |
| 60 | <groupId>org.codehaus.mojo</groupId> |
| 61 | <artifactId>build-helper-maven-plugin</artifactId> |
| 62 | <executions> |
| 63 | <execution> |
| 64 | <id>add-source</id> |
| 65 | <phase>generate-sources</phase> |
| 66 | <goals> |
| 67 | <goal>add-source</goal> |
| 68 | </goals> |
| 69 | <configuration> |
| 70 | <sources> |
| 71 | <source>${project.build.directory}/generated-sources/javacc/</source> |
| 72 | </sources> |
| 73 | </configuration> |
| 74 | </execution> |
| 75 | </executions> |
| 76 | </plugin> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 77 | </plugins> |
vinayakb | ac7e7ce | 2012-03-05 06:51:17 +0000 | [diff] [blame] | 78 | <pluginManagement> |
| 79 | <plugins> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 80 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 81 | only. It has no influence on the Maven build itself. --> |
vinayakb | ac7e7ce | 2012-03-05 06:51:17 +0000 | [diff] [blame] | 82 | <plugin> |
| 83 | <groupId>org.eclipse.m2e</groupId> |
| 84 | <artifactId>lifecycle-mapping</artifactId> |
| 85 | <version>1.0.0</version> |
| 86 | <configuration> |
| 87 | <lifecycleMappingMetadata> |
| 88 | <pluginExecutions> |
| 89 | <pluginExecution> |
| 90 | <pluginExecutionFilter> |
| 91 | <groupId> |
| 92 | org.codehaus.mojo |
| 93 | </groupId> |
| 94 | <artifactId> |
| 95 | javacc-maven-plugin |
| 96 | </artifactId> |
| 97 | <versionRange> |
| 98 | [2.6,) |
| 99 | </versionRange> |
| 100 | <goals> |
| 101 | <goal>jjdoc</goal> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 102 | <goal>javacc</goal> |
vinayakb | ac7e7ce | 2012-03-05 06:51:17 +0000 | [diff] [blame] | 103 | </goals> |
| 104 | </pluginExecutionFilter> |
| 105 | <action> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 106 | <ignore /> |
vinayakb | ac7e7ce | 2012-03-05 06:51:17 +0000 | [diff] [blame] | 107 | </action> |
| 108 | </pluginExecution> |
| 109 | </pluginExecutions> |
| 110 | </lifecycleMappingMetadata> |
| 111 | </configuration> |
| 112 | </plugin> |
| 113 | </plugins> |
| 114 | </pluginManagement> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 115 | </build> |
| 116 | |
| 117 | <dependencies> |
| 118 | <dependency> |
| 119 | <groupId>edu.uci.ics.asterix</groupId> |
| 120 | <artifactId>asterix-common</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 121 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 122 | <scope>compile</scope> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>edu.uci.ics.asterix</groupId> |
| 126 | <artifactId>asterix-om</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 127 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 128 | <scope>compile</scope> |
| 129 | </dependency> |
| 130 | <dependency> |
| 131 | <groupId>edu.uci.ics.asterix</groupId> |
| 132 | <artifactId>asterix-metadata</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 133 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 134 | <scope>compile</scope> |
| 135 | </dependency> |
| 136 | <dependency> |
| 137 | <groupId>edu.uci.ics.fuzzyjoin</groupId> |
| 138 | <artifactId>fuzzyjoin-core</artifactId> |
| 139 | <version>0.0.3</version> |
| 140 | <scope>compile</scope> |
| 141 | </dependency> |
zheilbron | cc5135d | 2013-08-05 16:40:33 -0700 | [diff] [blame^] | 142 | <dependency> |
| 143 | <groupId>xerces</groupId> |
| 144 | <artifactId>xerces</artifactId> |
| 145 | <version>2.4.0</version> |
| 146 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 147 | </dependencies> |
| 148 | |
| 149 | </project> |