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> |
Yingyi Bu | 0622e8e | 2014-05-27 17:46:41 -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 | d4daeb4 | 2015-09-15 14:31:32 -0700 | [diff] [blame] | 27 | <version>0.2.17-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 | |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 30 | <build> |
| 31 | <plugins> |
| 32 | <plugin> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 33 | <groupId>org.codehaus.mojo</groupId> |
| 34 | <artifactId>javacc-maven-plugin</artifactId> |
| 35 | <version>2.6</version> |
| 36 | <executions> |
| 37 | <execution> |
| 38 | <id>javacc</id> |
| 39 | <goals> |
| 40 | <goal>javacc</goal> |
| 41 | </goals> |
| 42 | <configuration> |
| 43 | <isStatic>false</isStatic> |
| 44 | </configuration> |
| 45 | </execution> |
| 46 | </executions> |
| 47 | </plugin> |
| 48 | <plugin> |
| 49 | <groupId>org.codehaus.mojo</groupId> |
| 50 | <artifactId>build-helper-maven-plugin</artifactId> |
Jianfeng Jia | a63d0f7 | 2016-02-13 10:06:24 -0800 | [diff] [blame^] | 51 | <version>1.10</version> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 52 | <executions> |
| 53 | <execution> |
| 54 | <id>add-source</id> |
| 55 | <phase>generate-sources</phase> |
| 56 | <goals> |
| 57 | <goal>add-source</goal> |
| 58 | </goals> |
| 59 | <configuration> |
| 60 | <sources> |
| 61 | <source>${project.build.directory}/generated-sources/javacc/</source> |
| 62 | </sources> |
| 63 | </configuration> |
| 64 | </execution> |
| 65 | </executions> |
| 66 | </plugin> |
| 67 | </plugins> |
| 68 | <pluginManagement> |
| 69 | <plugins> |
| 70 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 71 | <plugin> |
| 72 | <groupId>org.eclipse.m2e</groupId> |
| 73 | <artifactId>lifecycle-mapping</artifactId> |
| 74 | <version>1.0.0</version> |
| 75 | <configuration> |
| 76 | <lifecycleMappingMetadata> |
| 77 | <pluginExecutions> |
| 78 | <pluginExecution> |
| 79 | <pluginExecutionFilter> |
| 80 | <groupId> |
| 81 | org.codehaus.mojo |
| 82 | </groupId> |
| 83 | <artifactId> |
| 84 | javacc-maven-plugin |
| 85 | </artifactId> |
| 86 | <versionRange> |
| 87 | [2.6,) |
| 88 | </versionRange> |
| 89 | <goals> |
| 90 | <goal>javacc</goal> |
| 91 | </goals> |
| 92 | </pluginExecutionFilter> |
| 93 | <action> |
| 94 | <ignore /> |
| 95 | </action> |
| 96 | </pluginExecution> |
| 97 | </pluginExecutions> |
| 98 | </lifecycleMappingMetadata> |
| 99 | </configuration> |
| 100 | </plugin> |
| 101 | </plugins> |
| 102 | </pluginManagement> |
| 103 | </build> |
| 104 | <dependencies> |
| 105 | <dependency> |
| 106 | <!-- Dependency management inherited from top-level hyracks --> |
| 107 | <groupId>junit</groupId> |
| 108 | <artifactId>junit</artifactId> |
| 109 | </dependency> |
| 110 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 111 | <groupId>org.apache.hyracks</groupId> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 112 | <artifactId>algebricks-compiler</artifactId> |
Ian Maxon | d4daeb4 | 2015-09-15 14:31:32 -0700 | [diff] [blame] | 113 | <version>0.2.17-SNAPSHOT</version> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 114 | </dependency> |
JavierJia | 26c3b53 | 2015-10-23 13:49:32 -0700 | [diff] [blame] | 115 | <dependency> |
| 116 | <groupId>org.apache.hyracks</groupId> |
| 117 | <artifactId>hyracks-util</artifactId> |
| 118 | <version>0.2.17-SNAPSHOT</version> |
| 119 | </dependency> |
Chris Hillery | b531ce3 | 2014-02-20 16:39:25 -0800 | [diff] [blame] | 120 | </dependencies> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 121 | </project> |