blob: 0cf1babfd470769a2093c131ca250796b89e8c65 [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>
vinayakb70c821c2012-10-29 15:46:12 +00009 <version>0.2.3-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>
madhusudancs@gmail.comccd99382013-03-22 17:53:40 +000019 <source>1.6</source>
20 <target>1.6</target>
madhusudancs@gmail.comcaf08332013-03-15 08:26:56 +000021 <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>
52 </build>
53 <dependencies>
54 <dependency>
55 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb36016dc2012-10-09 06:10:12 +000056 <artifactId>algebricks-compiler</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000057 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000058 </dependency>
59 <dependency>
60 <groupId>junit</groupId>
61 <artifactId>junit</artifactId>
62 <version>4.8.2</version>
63 <type>jar</type>
64 <scope>test</scope>
65 </dependency>
66 </dependencies>
67</project>