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> |
buyingyi | 8d79d16 | 2012-10-22 23:04:47 +0000 | [diff] [blame] | 4 | <name>piglet-example</name> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 5 | |
| 6 | <parent> |
| 7 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 8 | <artifactId>algebricks-examples</artifactId> |
vinayakb | a553abb | 2013-03-24 07:53:49 +0000 | [diff] [blame^] | 9 | <version>0.2.4-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 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> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 19 | <source>1.7</source> |
| 20 | <target>1.7</target> |
| 21 | <fork>true</fork> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 22 | </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> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 56 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | a553abb | 2013-03-24 07:53:49 +0000 | [diff] [blame^] | 57 | <version>0.2.4-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 58 | </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> |