blob: 109d1bc39041ca883423cd6c27738fbcb9157c38 [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>
vinayakb0c860392012-10-06 18:47:20 +00009 <version>0.2.2-SNAPSHOT</version>
10 </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>
19 <source>1.6</source>
20 <target>1.6</target>
21 </configuration>
22 </plugin>
23 <plugin>
24 <groupId>org.codehaus.mojo</groupId>
25 <artifactId>javacc-maven-plugin</artifactId>
26 <version>2.6</version>
27 <executions>
28 <execution>
29 <id>javacc</id>
30 <goals>
31 <goal>javacc</goal>
32 </goals>
33 <configuration>
34 <isStatic>false</isStatic>
35 </configuration>
36 </execution>
37 </executions>
38 </plugin>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-surefire-plugin</artifactId>
42 <version>2.7.2</version>
43 <configuration>
44 <includes>
45 <include>**/*TestSuite.java</include>
46 <include>**/*Test.java</include>
47 </includes>
48 </configuration>
49 </plugin>
50 </plugins>
51 </build>
52 <dependencies>
53 <dependency>
54 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb36016dc2012-10-09 06:10:12 +000055 <artifactId>algebricks-compiler</artifactId>
vinayakb0c860392012-10-06 18:47:20 +000056 <version>0.2.2-SNAPSHOT</version>
57 </dependency>
58 <dependency>
59 <groupId>junit</groupId>
60 <artifactId>junit</artifactId>
61 <version>4.8.2</version>
62 <type>jar</type>
63 <scope>test</scope>
64 </dependency>
65 </dependencies>
66</project>