vinayakb | 59d505d | 2012-10-29 10:38:02 +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 | <groupId>edu.uci.ics.hyracks.examples.compat</groupId> |
| 4 | <artifactId>hadoopcompathelper</artifactId> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 5 | <name>hadoopcompathelper</name> |
| 6 | |
| 7 | <parent> |
| 8 | <groupId>edu.uci.ics.hyracks.examples</groupId> |
| 9 | <artifactId>hadoop-compat-example</artifactId> |
vinayakb | a8a0261 | 2013-03-25 03:17:01 +0000 | [diff] [blame^] | 10 | <version>0.2.3</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 11 | </parent> |
| 12 | |
| 13 | <dependencies> |
| 14 | <dependency> |
| 15 | <groupId>edu.uci.ics.hyracks</groupId> |
| 16 | <artifactId>hyracks-dataflow-std</artifactId> |
vinayakb | a8a0261 | 2013-03-25 03:17:01 +0000 | [diff] [blame^] | 17 | <version>0.2.3</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 18 | <scope>compile</scope> |
| 19 | </dependency> |
| 20 | <dependency> |
| 21 | <groupId>edu.uci.ics.hyracks</groupId> |
| 22 | <artifactId>hyracks-api</artifactId> |
vinayakb | a8a0261 | 2013-03-25 03:17:01 +0000 | [diff] [blame^] | 23 | <version>0.2.3</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 24 | <scope>compile</scope> |
| 25 | </dependency> |
| 26 | </dependencies> |
| 27 | <build> |
| 28 | <plugins> |
| 29 | <plugin> |
| 30 | <groupId>org.apache.maven.plugins</groupId> |
| 31 | <artifactId>maven-compiler-plugin</artifactId> |
| 32 | <version>2.0.2</version> |
| 33 | <configuration> |
buyingyi | 5df938f | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 34 | <source>1.7</source> |
| 35 | <target>1.7</target> |
| 36 | <fork>true</fork> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 37 | </configuration> |
| 38 | </plugin> |
| 39 | </plugins> |
| 40 | </build> |
| 41 | </project> |