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 | !--> |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 19 | <project |
| 20 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 21 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <artifactId>asterix</artifactId> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 26 | <groupId>org.apache.asterix</groupId> |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 27 | <version>0.8.7-SNAPSHOT</version> |
| 28 | </parent> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 29 | |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 30 | <licenses> |
| 31 | <license> |
| 32 | <name>Apache License, Version 2.0</name> |
| 33 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 34 | <distribution>repo</distribution> |
| 35 | <comments>A business-friendly OSS license</comments> |
| 36 | </license> |
| 37 | </licenses> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 38 | |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 39 | <artifactId>asterix-aql</artifactId> |
| 40 | <build> |
| 41 | <plugins> |
| 42 | <plugin> |
| 43 | <groupId>org.apache.maven.plugins</groupId> |
| 44 | <artifactId>maven-compiler-plugin</artifactId> |
| 45 | <version>2.3.2</version> |
| 46 | <configuration> |
| 47 | <source>1.7</source> |
| 48 | <target>1.7</target> |
| 49 | <fork>true</fork> |
| 50 | </configuration> |
| 51 | </plugin> |
| 52 | <plugin> |
| 53 | <groupId>org.codehaus.mojo</groupId> |
| 54 | <artifactId>javacc-maven-plugin</artifactId> |
| 55 | <version>2.6</version> |
| 56 | <executions> |
| 57 | <execution> |
| 58 | <id>javacc</id> |
| 59 | <goals> |
| 60 | <goal>javacc</goal> |
| 61 | </goals> |
| 62 | <configuration> |
| 63 | <isStatic>false</isStatic> |
| 64 | <javaUnicodeEscape>true</javaUnicodeEscape> |
| 65 | </configuration> |
| 66 | </execution> |
| 67 | <execution> |
| 68 | <id>javacc-jjdoc</id> |
| 69 | <goals> |
| 70 | <goal>jjdoc</goal> |
| 71 | </goals> |
| 72 | <phase>process-sources</phase> |
| 73 | </execution> |
| 74 | </executions> |
| 75 | </plugin> |
JArod | 2c5e06a | 2013-05-18 16:40:22 -0700 | [diff] [blame] | 76 | <plugin> |
| 77 | <groupId>org.codehaus.mojo</groupId> |
| 78 | <artifactId>build-helper-maven-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 79 | <version>1.9</version> |
JArod | 2c5e06a | 2013-05-18 16:40:22 -0700 | [diff] [blame] | 80 | <executions> |
| 81 | <execution> |
| 82 | <id>add-source</id> |
| 83 | <phase>generate-sources</phase> |
| 84 | <goals> |
| 85 | <goal>add-source</goal> |
| 86 | </goals> |
| 87 | <configuration> |
| 88 | <sources> |
| 89 | <source>${project.build.directory}/generated-sources/javacc/</source> |
| 90 | </sources> |
| 91 | </configuration> |
| 92 | </execution> |
| 93 | </executions> |
| 94 | </plugin> |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 95 | </plugins> |
| 96 | <pluginManagement> |
| 97 | <plugins> |
| 98 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 99 | only. It has no influence on the Maven build itself. --> |
| 100 | <plugin> |
| 101 | <groupId>org.eclipse.m2e</groupId> |
| 102 | <artifactId>lifecycle-mapping</artifactId> |
| 103 | <version>1.0.0</version> |
| 104 | <configuration> |
| 105 | <lifecycleMappingMetadata> |
| 106 | <pluginExecutions> |
| 107 | <pluginExecution> |
| 108 | <pluginExecutionFilter> |
| 109 | <groupId> |
| 110 | org.codehaus.mojo |
| 111 | </groupId> |
| 112 | <artifactId> |
| 113 | javacc-maven-plugin |
| 114 | </artifactId> |
| 115 | <versionRange> |
| 116 | [2.6,) |
| 117 | </versionRange> |
| 118 | <goals> |
| 119 | <goal>jjdoc</goal> |
| 120 | <goal>javacc</goal> |
| 121 | </goals> |
| 122 | </pluginExecutionFilter> |
| 123 | <action> |
| 124 | <ignore /> |
| 125 | </action> |
| 126 | </pluginExecution> |
| 127 | </pluginExecutions> |
| 128 | </lifecycleMappingMetadata> |
| 129 | </configuration> |
| 130 | </plugin> |
| 131 | </plugins> |
| 132 | </pluginManagement> |
| 133 | </build> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 134 | |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 135 | <dependencies> |
| 136 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 137 | <groupId>org.apache.asterix</groupId> |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 138 | <artifactId>asterix-common</artifactId> |
| 139 | <version>0.8.7-SNAPSHOT</version> |
| 140 | <scope>compile</scope> |
| 141 | </dependency> |
| 142 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 143 | <groupId>org.apache.asterix</groupId> |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 144 | <artifactId>asterix-om</artifactId> |
| 145 | <version>0.8.7-SNAPSHOT</version> |
| 146 | <scope>compile</scope> |
| 147 | </dependency> |
| 148 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 149 | <groupId>org.apache.asterix</groupId> |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 150 | <artifactId>asterix-metadata</artifactId> |
| 151 | <version>0.8.7-SNAPSHOT</version> |
| 152 | <scope>compile</scope> |
| 153 | </dependency> |
| 154 | <dependency> |
Eldon Carman | d2d78ad | 2015-05-07 16:23:41 -0700 | [diff] [blame] | 155 | <groupId>xerces</groupId> |
| 156 | <artifactId>xerces</artifactId> |
| 157 | <version>2.4.0</version> |
| 158 | </dependency> |
| 159 | </dependencies> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 160 | |
| 161 | </project> |