Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ! Copyright 2009-2013 by The Regents of the University of California |
| 3 | ! Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | ! you may not use this file except in compliance with the License. |
| 5 | ! you may obtain a copy of the License from |
| 6 | ! |
| 7 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | ! |
| 9 | ! Unless required by applicable law or agreed to in writing, software |
| 10 | ! distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | ! See the License for the specific language governing permissions and |
| 13 | ! limitations under the License. |
| 14 | !--> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 15 | <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"> |
| 16 | <modelVersion>4.0.0</modelVersion> |
| 17 | <artifactId>piglet-example</artifactId> |
buyingyi | 8d79d16 | 2012-10-22 23:04:47 +0000 | [diff] [blame] | 18 | <name>piglet-example</name> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 19 | |
| 20 | <parent> |
| 21 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 22 | <artifactId>algebricks-examples</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame] | 23 | <version>0.2.10-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 24 | </parent> |
| 25 | |
| 26 | <build> |
| 27 | <plugins> |
| 28 | <plugin> |
| 29 | <groupId>org.apache.maven.plugins</groupId> |
| 30 | <artifactId>maven-compiler-plugin</artifactId> |
| 31 | <version>2.0.2</version> |
| 32 | <configuration> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 33 | <source>1.7</source> |
| 34 | <target>1.7</target> |
| 35 | <fork>true</fork> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 36 | </configuration> |
| 37 | </plugin> |
| 38 | <plugin> |
| 39 | <groupId>org.codehaus.mojo</groupId> |
| 40 | <artifactId>javacc-maven-plugin</artifactId> |
| 41 | <version>2.6</version> |
| 42 | <executions> |
| 43 | <execution> |
| 44 | <id>javacc</id> |
| 45 | <goals> |
| 46 | <goal>javacc</goal> |
| 47 | </goals> |
| 48 | <configuration> |
| 49 | <isStatic>false</isStatic> |
| 50 | </configuration> |
| 51 | </execution> |
| 52 | </executions> |
| 53 | </plugin> |
| 54 | <plugin> |
| 55 | <groupId>org.apache.maven.plugins</groupId> |
| 56 | <artifactId>maven-surefire-plugin</artifactId> |
| 57 | <version>2.7.2</version> |
| 58 | <configuration> |
| 59 | <includes> |
| 60 | <include>**/*TestSuite.java</include> |
| 61 | <include>**/*Test.java</include> |
| 62 | </includes> |
| 63 | </configuration> |
| 64 | </plugin> |
JArod | b6df3b5 | 2013-05-18 17:50:55 -0700 | [diff] [blame] | 65 | <plugin> |
| 66 | <groupId>org.codehaus.mojo</groupId> |
| 67 | <artifactId>build-helper-maven-plugin</artifactId> |
| 68 | <executions> |
| 69 | <execution> |
| 70 | <id>add-source</id> |
| 71 | <phase>generate-sources</phase> |
| 72 | <goals> |
| 73 | <goal>add-source</goal> |
| 74 | </goals> |
| 75 | <configuration> |
| 76 | <sources> |
| 77 | <source>${project.build.directory}/generated-sources/javacc/</source> |
| 78 | </sources> |
| 79 | </configuration> |
| 80 | </execution> |
| 81 | </executions> |
| 82 | </plugin> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 83 | </plugins> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 84 | <pluginManagement> |
| 85 | <plugins> |
| 86 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 87 | <plugin> |
| 88 | <groupId>org.eclipse.m2e</groupId> |
| 89 | <artifactId>lifecycle-mapping</artifactId> |
| 90 | <version>1.0.0</version> |
| 91 | <configuration> |
| 92 | <lifecycleMappingMetadata> |
| 93 | <pluginExecutions> |
| 94 | <pluginExecution> |
| 95 | <pluginExecutionFilter> |
| 96 | <groupId> |
| 97 | org.codehaus.mojo |
| 98 | </groupId> |
| 99 | <artifactId> |
| 100 | javacc-maven-plugin |
| 101 | </artifactId> |
| 102 | <versionRange> |
| 103 | [2.6,) |
| 104 | </versionRange> |
| 105 | <goals> |
| 106 | <goal>javacc</goal> |
| 107 | </goals> |
| 108 | </pluginExecutionFilter> |
| 109 | <action> |
vinayakb | 4fa2343 | 2013-04-06 19:21:13 +0000 | [diff] [blame] | 110 | <ignore /> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 111 | </action> |
| 112 | </pluginExecution> |
| 113 | </pluginExecutions> |
| 114 | </lifecycleMappingMetadata> |
| 115 | </configuration> |
| 116 | </plugin> |
| 117 | </plugins> |
| 118 | </pluginManagement> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 119 | </build> |
| 120 | <dependencies> |
| 121 | <dependency> |
| 122 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 36016dc | 2012-10-09 06:10:12 +0000 | [diff] [blame] | 123 | <artifactId>algebricks-compiler</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame] | 124 | <version>0.2.10-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 125 | </dependency> |
| 126 | <dependency> |
| 127 | <groupId>junit</groupId> |
| 128 | <artifactId>junit</artifactId> |
| 129 | <version>4.8.2</version> |
| 130 | <type>jar</type> |
| 131 | <scope>test</scope> |
| 132 | </dependency> |
| 133 | </dependencies> |
| 134 | </project> |