blob: 401636994104c7853fae689e9e6e5c968699f33d [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
Ian Maxond8857792015-09-11 14:19:53 -07002 ! 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
vinayakb0c860392012-10-06 18:47:20 +000020<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 Hilleryb531ce32014-02-20 16:39:25 -080021 <modelVersion>4.0.0</modelVersion>
22 <artifactId>piglet-example</artifactId>
23 <name>piglet-example</name>
Michael Blowb4c1fb02016-05-09 15:41:00 -070024 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070025 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -080026 <artifactId>algebricks-examples</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -080027 <version>0.2.18-SNAPSHOT</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -080028 </parent>
vinayakb0c860392012-10-06 18:47:20 +000029
Ian Maxon9e37c962015-11-25 07:38:37 -080030 <properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070031 <root.dir>${basedir}/../../..</root.dir>
Ian Maxon9e37c962015-11-25 07:38:37 -080032 </properties>
33
Chris Hilleryb531ce32014-02-20 16:39:25 -080034 <build>
35 <plugins>
36 <plugin>
Chris Hilleryb531ce32014-02-20 16:39:25 -080037 <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 Jiaa63d0f72016-02-13 10:06:24 -080055 <version>1.10</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -080056 <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 Blowb4c1fb02016-05-09 15:41:00 -070098 <ignore/>
Chris Hilleryb531ce32014-02-20 16:39:25 -080099 </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>
113 </dependency>
114 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700115 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800116 <artifactId>algebricks-compiler</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -0800117 <version>0.2.18-SNAPSHOT</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800118 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700119 <dependency>
120 <groupId>org.apache.hyracks</groupId>
121 <artifactId>hyracks-util</artifactId>
122 <version>0.2.18-SNAPSHOT</version>
123 </dependency>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800124 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +0000125</project>