blob: f12e250d2151e730ff2560d341bf45a4af45975d [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
2 ! 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">
16 <modelVersion>4.0.0</modelVersion>
17 <artifactId>piglet-example</artifactId>
buyingyi8d79d162012-10-22 23:04:47 +000018 <name>piglet-example</name>
vinayakb0c860392012-10-06 18:47:20 +000019
20 <parent>
21 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb36016dc2012-10-09 06:10:12 +000022 <artifactId>algebricks-examples</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080023 <version>0.2.11-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000024 </parent>
25
26 <build>
27 <plugins>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-compiler-plugin</artifactId>
31 <version>2.0.2</version>
32 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000033 <source>1.7</source>
34 <target>1.7</target>
35 <fork>true</fork>
vinayakb0c860392012-10-06 18:47:20 +000036 </configuration>
37 </plugin>
38 <plugin>
39 <groupId>org.codehaus.mojo</groupId>
40 <artifactId>javacc-maven-plugin</artifactId>
41 <version>2.6</version>
42 <executions>
43 <execution>
44 <id>javacc</id>
45 <goals>
46 <goal>javacc</goal>
47 </goals>
48 <configuration>
49 <isStatic>false</isStatic>
50 </configuration>
51 </execution>
52 </executions>
53 </plugin>
JArodb6df3b52013-05-18 17:50:55 -070054 <plugin>
55 <groupId>org.codehaus.mojo</groupId>
56 <artifactId>build-helper-maven-plugin</artifactId>
57 <executions>
58 <execution>
59 <id>add-source</id>
60 <phase>generate-sources</phase>
61 <goals>
62 <goal>add-source</goal>
63 </goals>
64 <configuration>
65 <sources>
66 <source>${project.build.directory}/generated-sources/javacc/</source>
67 </sources>
68 </configuration>
69 </execution>
70 </executions>
71 </plugin>
vinayakb0c860392012-10-06 18:47:20 +000072 </plugins>
vinayakb4df31102013-04-06 18:28:48 +000073 <pluginManagement>
74 <plugins>
75 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
76 <plugin>
77 <groupId>org.eclipse.m2e</groupId>
78 <artifactId>lifecycle-mapping</artifactId>
79 <version>1.0.0</version>
80 <configuration>
81 <lifecycleMappingMetadata>
82 <pluginExecutions>
83 <pluginExecution>
84 <pluginExecutionFilter>
85 <groupId>
86 org.codehaus.mojo
87 </groupId>
88 <artifactId>
89 javacc-maven-plugin
90 </artifactId>
91 <versionRange>
92 [2.6,)
93 </versionRange>
94 <goals>
95 <goal>javacc</goal>
96 </goals>
97 </pluginExecutionFilter>
98 <action>
vinayakb4fa23432013-04-06 19:21:13 +000099 <ignore />
vinayakb4df31102013-04-06 18:28:48 +0000100 </action>
101 </pluginExecution>
102 </pluginExecutions>
103 </lifecycleMappingMetadata>
104 </configuration>
105 </plugin>
106 </plugins>
107 </pluginManagement>
vinayakb0c860392012-10-06 18:47:20 +0000108 </build>
109 <dependencies>
110 <dependency>
111 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb36016dc2012-10-09 06:10:12 +0000112 <artifactId>algebricks-compiler</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800113 <version>0.2.11-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +0000114 </dependency>
vinayakb0c860392012-10-06 18:47:20 +0000115 </dependencies>
116</project>