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> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame] | 9 | <version>0.2.6-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> |
JArod | b6df3b5 | 2013-05-18 17:50:55 -0700 | [diff] [blame] | 51 | <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> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 69 | </plugins> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 70 | <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> |
vinayakb | 4fa2343 | 2013-04-06 19:21:13 +0000 | [diff] [blame] | 96 | <ignore /> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 97 | </action> |
| 98 | </pluginExecution> |
| 99 | </pluginExecutions> |
| 100 | </lifecycleMappingMetadata> |
| 101 | </configuration> |
| 102 | </plugin> |
| 103 | </plugins> |
| 104 | </pluginManagement> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 105 | </build> |
| 106 | <dependencies> |
| 107 | <dependency> |
| 108 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 109 | <artifactId>algebricks-compiler</artifactId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame] | 110 | <version>0.2.6-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 111 | </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> |