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