vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame^] | 1 | <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> |
| 4 | |
| 5 | <parent> |
| 6 | <groupId>edu.uci.ics.hyracks</groupId> |
| 7 | <artifactId>hyracks-algebricks-examples</artifactId> |
| 8 | <version>0.2.2-SNAPSHOT</version> |
| 9 | </parent> |
| 10 | |
| 11 | <build> |
| 12 | <plugins> |
| 13 | <plugin> |
| 14 | <groupId>org.apache.maven.plugins</groupId> |
| 15 | <artifactId>maven-compiler-plugin</artifactId> |
| 16 | <version>2.0.2</version> |
| 17 | <configuration> |
| 18 | <source>1.6</source> |
| 19 | <target>1.6</target> |
| 20 | </configuration> |
| 21 | </plugin> |
| 22 | <plugin> |
| 23 | <groupId>org.codehaus.mojo</groupId> |
| 24 | <artifactId>javacc-maven-plugin</artifactId> |
| 25 | <version>2.6</version> |
| 26 | <executions> |
| 27 | <execution> |
| 28 | <id>javacc</id> |
| 29 | <goals> |
| 30 | <goal>javacc</goal> |
| 31 | </goals> |
| 32 | <configuration> |
| 33 | <isStatic>false</isStatic> |
| 34 | </configuration> |
| 35 | </execution> |
| 36 | </executions> |
| 37 | </plugin> |
| 38 | <plugin> |
| 39 | <groupId>org.apache.maven.plugins</groupId> |
| 40 | <artifactId>maven-surefire-plugin</artifactId> |
| 41 | <version>2.7.2</version> |
| 42 | <configuration> |
| 43 | <includes> |
| 44 | <include>**/*TestSuite.java</include> |
| 45 | <include>**/*Test.java</include> |
| 46 | </includes> |
| 47 | </configuration> |
| 48 | </plugin> |
| 49 | </plugins> |
| 50 | </build> |
| 51 | <dependencies> |
| 52 | <dependency> |
| 53 | <groupId>edu.uci.ics.hyracks</groupId> |
| 54 | <artifactId>hyracks-algebricks-compiler</artifactId> |
| 55 | <version>0.2.2-SNAPSHOT</version> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>junit</groupId> |
| 59 | <artifactId>junit</artifactId> |
| 60 | <version>4.8.2</version> |
| 61 | <type>jar</type> |
| 62 | <scope>test</scope> |
| 63 | </dependency> |
| 64 | </dependencies> |
| 65 | </project> |