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