blob: 94fae5b289c8560fe6e79e40a47d0396038ca786 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
Chris Hilleryb531ce32014-02-20 16:39:25 -08002 ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License");
4 ! you may not use this file except in compliance with the License.
5 ! you may obtain a copy of the License from
6 !
7 ! http://www.apache.org/licenses/LICENSE-2.0
8 !
9 ! Unless required by applicable law or agreed to in writing, software
10 ! distributed under the License is distributed on an "AS IS" BASIS,
11 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ! See the License for the specific language governing permissions and
13 ! limitations under the License.
14 !-->
vinayakb0c860392012-10-06 18:47:20 +000015<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 -080016 <modelVersion>4.0.0</modelVersion>
17 <artifactId>piglet-example</artifactId>
18 <name>piglet-example</name>
Yingyi Bu0622e8e2014-05-27 17:46:41 -070019 <parent>
Chris Hilleryb531ce32014-02-20 16:39:25 -080020 <groupId>edu.uci.ics.hyracks</groupId>
21 <artifactId>algebricks-examples</artifactId>
Ian Maxon97acfe52015-02-17 20:47:20 -080022 <version>0.2.16-SNAPSHOT</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -080023 </parent>
vinayakb0c860392012-10-06 18:47:20 +000024
Chris Hilleryb531ce32014-02-20 16:39:25 -080025 <build>
26 <plugins>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-compiler-plugin</artifactId>
30 <version>2.0.2</version>
31 <configuration>
32 <source>1.7</source>
33 <target>1.7</target>
34 <fork>true</fork>
35 </configuration>
36 </plugin>
37 <plugin>
38 <groupId>org.codehaus.mojo</groupId>
39 <artifactId>javacc-maven-plugin</artifactId>
40 <version>2.6</version>
41 <executions>
42 <execution>
43 <id>javacc</id>
44 <goals>
45 <goal>javacc</goal>
46 </goals>
47 <configuration>
48 <isStatic>false</isStatic>
49 </configuration>
50 </execution>
51 </executions>
52 </plugin>
53 <plugin>
54 <groupId>org.codehaus.mojo</groupId>
55 <artifactId>build-helper-maven-plugin</artifactId>
56 <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>
98 <ignore />
99 </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>
115 <groupId>edu.uci.ics.hyracks</groupId>
116 <artifactId>algebricks-compiler</artifactId>
Ian Maxon97acfe52015-02-17 20:47:20 -0800117 <version>0.2.16-SNAPSHOT</version>
Chris Hilleryb531ce32014-02-20 16:39:25 -0800118 </dependency>
119 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +0000120</project>