blob: 20bc586131f825fd356b3272a48d6e7e8354c57b [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>
Yingyi Bu0622e8e2014-05-27 17:46:41 -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 Maxond4daeb42015-09-15 14:31:32 -070027 <version>0.2.17-SNAPSHOT</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -080028 </parent>
vinayakb0c860392012-10-06 18:47:20 +000029
Chris Hilleryb531ce32014-02-20 16:39:25 -080030 <build>
31 <plugins>
32 <plugin>
Chris Hilleryb531ce32014-02-20 16:39:25 -080033 <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 Jiaa63d0f72016-02-13 10:06:24 -080051 <version>1.10</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -080052 <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 Maxone915e8c2015-07-01 17:03:31 -0700111 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800112 <artifactId>algebricks-compiler</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700113 <version>0.2.17-SNAPSHOT</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800114 </dependency>
JavierJia26c3b532015-10-23 13:49:32 -0700115 <dependency>
116 <groupId>org.apache.hyracks</groupId>
117 <artifactId>hyracks-util</artifactId>
118 <version>0.2.17-SNAPSHOT</version>
119 </dependency>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800120 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +0000121</project>