blob: 254d016e8b6b57c0672f50ff1431c5dbf4caf8e5 [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>
JArodb6df3b52013-05-18 17:50:55 -070051 <plugin>
52 <groupId>org.codehaus.mojo</groupId>
53 <artifactId>build-helper-maven-plugin</artifactId>
54 <executions>
55 <execution>
56 <id>add-source</id>
57 <phase>generate-sources</phase>
58 <goals>
59 <goal>add-source</goal>
60 </goals>
61 <configuration>
62 <sources>
63 <source>${project.build.directory}/generated-sources/javacc/</source>
64 </sources>
65 </configuration>
66 </execution>
67 </executions>
68 </plugin>
vinayakb0c860392012-10-06 18:47:20 +000069 </plugins>
vinayakb4df31102013-04-06 18:28:48 +000070 <pluginManagement>
71 <plugins>
72 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
73 <plugin>
74 <groupId>org.eclipse.m2e</groupId>
75 <artifactId>lifecycle-mapping</artifactId>
76 <version>1.0.0</version>
77 <configuration>
78 <lifecycleMappingMetadata>
79 <pluginExecutions>
80 <pluginExecution>
81 <pluginExecutionFilter>
82 <groupId>
83 org.codehaus.mojo
84 </groupId>
85 <artifactId>
86 javacc-maven-plugin
87 </artifactId>
88 <versionRange>
89 [2.6,)
90 </versionRange>
91 <goals>
92 <goal>javacc</goal>
93 </goals>
94 </pluginExecutionFilter>
95 <action>
vinayakb4fa23432013-04-06 19:21:13 +000096 <ignore />
vinayakb4df31102013-04-06 18:28:48 +000097 </action>
98 </pluginExecution>
99 </pluginExecutions>
100 </lifecycleMappingMetadata>
101 </configuration>
102 </plugin>
103 </plugins>
104 </pluginManagement>
vinayakb0c860392012-10-06 18:47:20 +0000105 </build>
106 <dependencies>
107 <dependency>
108 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb36016dc2012-10-09 06:10:12 +0000109 <artifactId>algebricks-compiler</artifactId>
Vinayak Borkarccfbf412013-04-25 11:40:50 -0700110 <version>0.2.6-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +0000111 </dependency>
112 <dependency>
113 <groupId>junit</groupId>
114 <artifactId>junit</artifactId>
115 <version>4.8.2</version>
116 <type>jar</type>
117 <scope>test</scope>
118 </dependency>
119 </dependencies>
120</project>