blob: 8297f4d915d49ca7503ef26ddd07626bf4bf62d0 [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>
buyingyi0f63d8b2013-07-22 11:33:10 -070023 <version>0.2.10-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>
54 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-surefire-plugin</artifactId>
57 <version>2.7.2</version>
58 <configuration>
59 <includes>
60 <include>**/*TestSuite.java</include>
61 <include>**/*Test.java</include>
62 </includes>
63 </configuration>
64 </plugin>
JArodb6df3b52013-05-18 17:50:55 -070065 <plugin>
66 <groupId>org.codehaus.mojo</groupId>
67 <artifactId>build-helper-maven-plugin</artifactId>
68 <executions>
69 <execution>
70 <id>add-source</id>
71 <phase>generate-sources</phase>
72 <goals>
73 <goal>add-source</goal>
74 </goals>
75 <configuration>
76 <sources>
77 <source>${project.build.directory}/generated-sources/javacc/</source>
78 </sources>
79 </configuration>
80 </execution>
81 </executions>
82 </plugin>
vinayakb0c860392012-10-06 18:47:20 +000083 </plugins>
vinayakb4df31102013-04-06 18:28:48 +000084 <pluginManagement>
85 <plugins>
86 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
87 <plugin>
88 <groupId>org.eclipse.m2e</groupId>
89 <artifactId>lifecycle-mapping</artifactId>
90 <version>1.0.0</version>
91 <configuration>
92 <lifecycleMappingMetadata>
93 <pluginExecutions>
94 <pluginExecution>
95 <pluginExecutionFilter>
96 <groupId>
97 org.codehaus.mojo
98 </groupId>
99 <artifactId>
100 javacc-maven-plugin
101 </artifactId>
102 <versionRange>
103 [2.6,)
104 </versionRange>
105 <goals>
106 <goal>javacc</goal>
107 </goals>
108 </pluginExecutionFilter>
109 <action>
vinayakb4fa23432013-04-06 19:21:13 +0000110 <ignore />
vinayakb4df31102013-04-06 18:28:48 +0000111 </action>
112 </pluginExecution>
113 </pluginExecutions>
114 </lifecycleMappingMetadata>
115 </configuration>
116 </plugin>
117 </plugins>
118 </pluginManagement>
vinayakb0c860392012-10-06 18:47:20 +0000119 </build>
120 <dependencies>
121 <dependency>
122 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb36016dc2012-10-09 06:10:12 +0000123 <artifactId>algebricks-compiler</artifactId>
buyingyi0f63d8b2013-07-22 11:33:10 -0700124 <version>0.2.10-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +0000125 </dependency>
126 <dependency>
127 <groupId>junit</groupId>
128 <artifactId>junit</artifactId>
129 <version>4.8.2</version>
130 <type>jar</type>
131 <scope>test</scope>
132 </dependency>
133 </dependencies>
134</project>