Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 2 | ! Licensed to the Apache Software Foundation (ASF) under one |
| 3 | ! or more contributor license agreements. See the NOTICE file |
| 4 | ! distributed with this work for additional information |
| 5 | ! regarding copyright ownership. The ASF licenses this file |
| 6 | ! to you under the Apache License, Version 2.0 (the |
| 7 | ! "License"); you may not use this file except in compliance |
| 8 | ! with the License. You may obtain a copy of the License at |
| 9 | ! |
| 10 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | ! |
| 12 | ! Unless required by applicable law or agreed to in writing, |
| 13 | ! software distributed under the License is distributed on an |
| 14 | ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | ! KIND, either express or implied. See the License for the |
| 16 | ! specific language governing permissions and limitations |
| 17 | ! under the License. |
Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 18 | !--> |
Ian Maxon | d2e1e89 | 2015-10-05 12:46:26 -0700 | [diff] [blame] | 19 | <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"> |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <artifactId>asterix</artifactId> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 23 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 24 | <version>0.8.8-SNAPSHOT</version> |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 25 | </parent> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 26 | |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 27 | <licenses> |
| 28 | <license> |
| 29 | <name>Apache License, Version 2.0</name> |
| 30 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 31 | <distribution>repo</distribution> |
| 32 | <comments>A business-friendly OSS license</comments> |
| 33 | </license> |
| 34 | </licenses> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 35 | |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame^] | 36 | <properties> |
| 37 | <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory> |
| 38 | </properties> |
| 39 | |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 40 | <artifactId>asterix-aql</artifactId> |
| 41 | <build> |
| 42 | <plugins> |
| 43 | <plugin> |
| 44 | <groupId>org.apache.maven.plugins</groupId> |
| 45 | <artifactId>maven-compiler-plugin</artifactId> |
| 46 | <version>2.3.2</version> |
| 47 | <configuration> |
| 48 | <source>1.7</source> |
| 49 | <target>1.7</target> |
| 50 | <fork>true</fork> |
| 51 | </configuration> |
| 52 | </plugin> |
| 53 | <plugin> |
| 54 | <groupId>org.codehaus.mojo</groupId> |
| 55 | <artifactId>javacc-maven-plugin</artifactId> |
| 56 | <version>2.6</version> |
| 57 | <executions> |
| 58 | <execution> |
| 59 | <id>javacc</id> |
| 60 | <goals> |
| 61 | <goal>javacc</goal> |
| 62 | </goals> |
| 63 | <configuration> |
| 64 | <isStatic>false</isStatic> |
| 65 | <javaUnicodeEscape>true</javaUnicodeEscape> |
| 66 | </configuration> |
| 67 | </execution> |
| 68 | <execution> |
| 69 | <id>javacc-jjdoc</id> |
| 70 | <goals> |
| 71 | <goal>jjdoc</goal> |
| 72 | </goals> |
| 73 | <phase>process-sources</phase> |
| 74 | </execution> |
| 75 | </executions> |
| 76 | </plugin> |
JArod | 2c5e06a | 2013-05-18 16:40:22 -0700 | [diff] [blame] | 77 | <plugin> |
| 78 | <groupId>org.codehaus.mojo</groupId> |
| 79 | <artifactId>build-helper-maven-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 80 | <version>1.9</version> |
JArod | 2c5e06a | 2013-05-18 16:40:22 -0700 | [diff] [blame] | 81 | <executions> |
| 82 | <execution> |
| 83 | <id>add-source</id> |
| 84 | <phase>generate-sources</phase> |
| 85 | <goals> |
| 86 | <goal>add-source</goal> |
| 87 | </goals> |
| 88 | <configuration> |
| 89 | <sources> |
| 90 | <source>${project.build.directory}/generated-sources/javacc/</source> |
| 91 | </sources> |
| 92 | </configuration> |
| 93 | </execution> |
| 94 | </executions> |
| 95 | </plugin> |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 96 | </plugins> |
| 97 | <pluginManagement> |
| 98 | <plugins> |
| 99 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 100 | only. It has no influence on the Maven build itself. --> |
| 101 | <plugin> |
| 102 | <groupId>org.eclipse.m2e</groupId> |
| 103 | <artifactId>lifecycle-mapping</artifactId> |
| 104 | <version>1.0.0</version> |
| 105 | <configuration> |
| 106 | <lifecycleMappingMetadata> |
| 107 | <pluginExecutions> |
| 108 | <pluginExecution> |
| 109 | <pluginExecutionFilter> |
| 110 | <groupId> |
| 111 | org.codehaus.mojo |
| 112 | </groupId> |
| 113 | <artifactId> |
| 114 | javacc-maven-plugin |
| 115 | </artifactId> |
| 116 | <versionRange> |
| 117 | [2.6,) |
| 118 | </versionRange> |
| 119 | <goals> |
| 120 | <goal>jjdoc</goal> |
| 121 | <goal>javacc</goal> |
| 122 | </goals> |
| 123 | </pluginExecutionFilter> |
| 124 | <action> |
| 125 | <ignore /> |
| 126 | </action> |
| 127 | </pluginExecution> |
| 128 | </pluginExecutions> |
| 129 | </lifecycleMappingMetadata> |
| 130 | </configuration> |
| 131 | </plugin> |
| 132 | </plugins> |
| 133 | </pluginManagement> |
| 134 | </build> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 135 | |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 136 | <dependencies> |
| 137 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 138 | <groupId>org.apache.asterix</groupId> |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 139 | <artifactId>asterix-common</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 140 | <version>0.8.8-SNAPSHOT</version> |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 141 | <scope>compile</scope> |
| 142 | </dependency> |
| 143 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 144 | <groupId>org.apache.asterix</groupId> |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 145 | <artifactId>asterix-om</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 146 | <version>0.8.8-SNAPSHOT</version> |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 147 | <scope>compile</scope> |
| 148 | </dependency> |
| 149 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 150 | <groupId>org.apache.asterix</groupId> |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 151 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 152 | <version>0.8.8-SNAPSHOT</version> |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 153 | <scope>compile</scope> |
| 154 | </dependency> |
| 155 | <dependency> |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 156 | <groupId>xerces</groupId> |
| 157 | <artifactId>xerces</artifactId> |
| 158 | <version>2.4.0</version> |
| 159 | </dependency> |
| 160 | </dependencies> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 161 | |
| 162 | </project> |