blob: ae2ec51e539ccd209d34b716be7cd3eb39701c92 [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>
51 <executions>
52 <execution>
53 <id>add-source</id>
54 <phase>generate-sources</phase>
55 <goals>
56 <goal>add-source</goal>
57 </goals>
58 <configuration>
59 <sources>
60 <source>${project.build.directory}/generated-sources/javacc/</source>
61 </sources>
62 </configuration>
63 </execution>
64 </executions>
65 </plugin>
66 </plugins>
67 <pluginManagement>
68 <plugins>
69 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
70 <plugin>
71 <groupId>org.eclipse.m2e</groupId>
72 <artifactId>lifecycle-mapping</artifactId>
73 <version>1.0.0</version>
74 <configuration>
75 <lifecycleMappingMetadata>
76 <pluginExecutions>
77 <pluginExecution>
78 <pluginExecutionFilter>
79 <groupId>
80 org.codehaus.mojo
81 </groupId>
82 <artifactId>
83 javacc-maven-plugin
84 </artifactId>
85 <versionRange>
86 [2.6,)
87 </versionRange>
88 <goals>
89 <goal>javacc</goal>
90 </goals>
91 </pluginExecutionFilter>
92 <action>
93 <ignore />
94 </action>
95 </pluginExecution>
96 </pluginExecutions>
97 </lifecycleMappingMetadata>
98 </configuration>
99 </plugin>
100 </plugins>
101 </pluginManagement>
102 </build>
103 <dependencies>
104 <dependency>
105 <!-- Dependency management inherited from top-level hyracks -->
106 <groupId>junit</groupId>
107 <artifactId>junit</artifactId>
108 </dependency>
109 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700110 <groupId>org.apache.hyracks</groupId>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800111 <artifactId>algebricks-compiler</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700112 <version>0.2.17-SNAPSHOT</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800113 </dependency>
JavierJia26c3b532015-10-23 13:49:32 -0700114 <dependency>
115 <groupId>org.apache.hyracks</groupId>
116 <artifactId>hyracks-util</artifactId>
117 <version>0.2.17-SNAPSHOT</version>
118 </dependency>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800119 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +0000120</project>