blob: 4b101d798ed3b8de150976eb6666376bd767b60c [file] [log] [blame]
vinayakb0c860392012-10-06 18:47:20 +00001<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">
2 <modelVersion>4.0.0</modelVersion>
3 <artifactId>piglet-example</artifactId>
buyingyi8d79d162012-10-22 23:04:47 +00004 <name>piglet-example</name>
vinayakb0c860392012-10-06 18:47:20 +00005
6 <parent>
7 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb36016dc2012-10-09 06:10:12 +00008 <artifactId>algebricks-examples</artifactId>
Vinayak Borkarccfbf412013-04-25 11:40:50 -07009 <version>0.2.6-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000010 </parent>
11
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 <version>2.0.2</version>
18 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000019 <source>1.7</source>
20 <target>1.7</target>
21 <fork>true</fork>
vinayakb0c860392012-10-06 18:47:20 +000022 </configuration>
23 </plugin>
24 <plugin>
25 <groupId>org.codehaus.mojo</groupId>
26 <artifactId>javacc-maven-plugin</artifactId>
27 <version>2.6</version>
28 <executions>
29 <execution>
30 <id>javacc</id>
31 <goals>
32 <goal>javacc</goal>
33 </goals>
34 <configuration>
35 <isStatic>false</isStatic>
36 </configuration>
37 </execution>
38 </executions>
39 </plugin>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-surefire-plugin</artifactId>
43 <version>2.7.2</version>
44 <configuration>
45 <includes>
46 <include>**/*TestSuite.java</include>
47 <include>**/*Test.java</include>
48 </includes>
49 </configuration>
50 </plugin>
51 </plugins>
vinayakb4df31102013-04-06 18:28:48 +000052 <pluginManagement>
53 <plugins>
54 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
55 <plugin>
56 <groupId>org.eclipse.m2e</groupId>
57 <artifactId>lifecycle-mapping</artifactId>
58 <version>1.0.0</version>
59 <configuration>
60 <lifecycleMappingMetadata>
61 <pluginExecutions>
62 <pluginExecution>
63 <pluginExecutionFilter>
64 <groupId>
65 org.codehaus.mojo
66 </groupId>
67 <artifactId>
68 javacc-maven-plugin
69 </artifactId>
70 <versionRange>
71 [2.6,)
72 </versionRange>
73 <goals>
74 <goal>javacc</goal>
75 </goals>
76 </pluginExecutionFilter>
77 <action>
vinayakb4fa23432013-04-06 19:21:13 +000078 <ignore />
vinayakb4df31102013-04-06 18:28:48 +000079 </action>
80 </pluginExecution>
81 </pluginExecutions>
82 </lifecycleMappingMetadata>
83 </configuration>
84 </plugin>
85 </plugins>
86 </pluginManagement>
vinayakb0c860392012-10-06 18:47:20 +000087 </build>
88 <dependencies>
89 <dependency>
90 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb36016dc2012-10-09 06:10:12 +000091 <artifactId>algebricks-compiler</artifactId>
Vinayak Borkarccfbf412013-04-25 11:40:50 -070092 <version>0.2.6-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000093 </dependency>
94 <dependency>
95 <groupId>junit</groupId>
96 <artifactId>junit</artifactId>
97 <version>4.8.2</version>
98 <type>jar</type>
99 <scope>test</scope>
100 </dependency>
101 </dependencies>
102</project>