Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -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. |
| 18 | !--> |
| 19 | |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 20 | <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/maven-v4_0_0.xsd"> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <artifactId>piglet-example</artifactId> |
| 23 | <name>piglet-example</name> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 24 | <parent> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 25 | <groupId>org.apache.hyracks</groupId> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 26 | <artifactId>algebricks-examples</artifactId> |
Ian Maxon | 14be946 | 2016-02-10 14:55:42 -0800 | [diff] [blame] | 27 | <version>0.2.18-SNAPSHOT</version> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 28 | </parent> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 29 | |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 30 | <properties> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 31 | <root.dir>${basedir}/../../..</root.dir> |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 32 | </properties> |
| 33 | |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 34 | <build> |
| 35 | <plugins> |
| 36 | <plugin> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 37 | <groupId>org.codehaus.mojo</groupId> |
| 38 | <artifactId>javacc-maven-plugin</artifactId> |
| 39 | <version>2.6</version> |
| 40 | <executions> |
| 41 | <execution> |
| 42 | <id>javacc</id> |
| 43 | <goals> |
| 44 | <goal>javacc</goal> |
| 45 | </goals> |
| 46 | <configuration> |
| 47 | <isStatic>false</isStatic> |
| 48 | </configuration> |
| 49 | </execution> |
| 50 | </executions> |
| 51 | </plugin> |
| 52 | <plugin> |
| 53 | <groupId>org.codehaus.mojo</groupId> |
| 54 | <artifactId>build-helper-maven-plugin</artifactId> |
Jianfeng Jia | a63d0f7 | 2016-02-13 10:06:24 -0800 | [diff] [blame] | 55 | <version>1.10</version> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 56 | <executions> |
| 57 | <execution> |
| 58 | <id>add-source</id> |
| 59 | <phase>generate-sources</phase> |
| 60 | <goals> |
| 61 | <goal>add-source</goal> |
| 62 | </goals> |
| 63 | <configuration> |
| 64 | <sources> |
| 65 | <source>${project.build.directory}/generated-sources/javacc/</source> |
| 66 | </sources> |
| 67 | </configuration> |
| 68 | </execution> |
| 69 | </executions> |
| 70 | </plugin> |
| 71 | </plugins> |
| 72 | <pluginManagement> |
| 73 | <plugins> |
| 74 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 75 | <plugin> |
| 76 | <groupId>org.eclipse.m2e</groupId> |
| 77 | <artifactId>lifecycle-mapping</artifactId> |
| 78 | <version>1.0.0</version> |
| 79 | <configuration> |
| 80 | <lifecycleMappingMetadata> |
| 81 | <pluginExecutions> |
| 82 | <pluginExecution> |
| 83 | <pluginExecutionFilter> |
| 84 | <groupId> |
| 85 | org.codehaus.mojo |
| 86 | </groupId> |
| 87 | <artifactId> |
| 88 | javacc-maven-plugin |
| 89 | </artifactId> |
| 90 | <versionRange> |
| 91 | [2.6,) |
| 92 | </versionRange> |
| 93 | <goals> |
| 94 | <goal>javacc</goal> |
| 95 | </goals> |
| 96 | </pluginExecutionFilter> |
| 97 | <action> |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 98 | <ignore /> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 99 | </action> |
| 100 | </pluginExecution> |
| 101 | </pluginExecutions> |
| 102 | </lifecycleMappingMetadata> |
| 103 | </configuration> |
| 104 | </plugin> |
| 105 | </plugins> |
| 106 | </pluginManagement> |
| 107 | </build> |
| 108 | <dependencies> |
| 109 | <dependency> |
| 110 | <!-- Dependency management inherited from top-level hyracks --> |
| 111 | <groupId>junit</groupId> |
| 112 | <artifactId>junit</artifactId> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 113 | <scope>test</scope> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 114 | </dependency> |
| 115 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 116 | <groupId>org.apache.hyracks</groupId> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 117 | <artifactId>algebricks-compiler</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 118 | <version>${project.version}</version> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 119 | </dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 120 | <dependency> |
| 121 | <groupId>org.apache.hyracks</groupId> |
| 122 | <artifactId>hyracks-util</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 123 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 124 | </dependency> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame] | 125 | <dependency> |
| 126 | <groupId>org.apache.hyracks</groupId> |
| 127 | <artifactId>algebricks-common</artifactId> |
| 128 | <version>${project.version}</version> |
| 129 | </dependency> |
| 130 | <dependency> |
| 131 | <groupId>org.apache.hyracks</groupId> |
| 132 | <artifactId>hyracks-dataflow-common</artifactId> |
| 133 | <version>${project.version}</version> |
| 134 | </dependency> |
| 135 | <dependency> |
| 136 | <groupId>org.apache.hyracks</groupId> |
| 137 | <artifactId>algebricks-rewriter</artifactId> |
| 138 | <version>${project.version}</version> |
| 139 | </dependency> |
| 140 | <dependency> |
| 141 | <groupId>org.apache.hyracks</groupId> |
| 142 | <artifactId>algebricks-runtime</artifactId> |
| 143 | <version>${project.version}</version> |
| 144 | </dependency> |
| 145 | <dependency> |
| 146 | <groupId>org.apache.hyracks</groupId> |
| 147 | <artifactId>algebricks-data</artifactId> |
| 148 | <version>${project.version}</version> |
| 149 | </dependency> |
| 150 | <dependency> |
| 151 | <groupId>org.apache.hyracks</groupId> |
| 152 | <artifactId>hyracks-api</artifactId> |
| 153 | <version>${project.version}</version> |
| 154 | </dependency> |
| 155 | <dependency> |
| 156 | <groupId>org.apache.hyracks</groupId> |
| 157 | <artifactId>hyracks-dataflow-std</artifactId> |
| 158 | <version>${project.version}</version> |
| 159 | </dependency> |
| 160 | <dependency> |
| 161 | <groupId>org.apache.hyracks</groupId> |
| 162 | <artifactId>hyracks-data-std</artifactId> |
| 163 | <version>${project.version}</version> |
| 164 | </dependency> |
| 165 | <dependency> |
| 166 | <groupId>org.apache.commons</groupId> |
| 167 | <artifactId>commons-lang3</artifactId> |
Michael Blow | fbccee6 | 2016-10-26 12:18:30 -0400 | [diff] [blame^] | 168 | <version>3.5</version> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame] | 169 | </dependency> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 170 | </dependencies> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 171 | </project> |