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 | <groupId>edu.uci.ics.hyracks.examples.compat</groupId> |
| 18 | <artifactId>hadoopcompatclient</artifactId> |
buyingyi | 8d79d16 | 2012-10-22 23:04:47 +0000 | [diff] [blame] | 19 | <name>hadoopcompatclient</name> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 20 | |
| 21 | <parent> |
| 22 | <groupId>edu.uci.ics.hyracks.examples</groupId> |
| 23 | <artifactId>hadoop-compat-example</artifactId> |
Ian Maxon | 1f30d4e | 2014-09-19 15:58:43 -0700 | [diff] [blame^] | 24 | <version>0.2.13</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | |
| 27 | <dependencies> |
| 28 | <dependency> |
| 29 | <groupId>edu.uci.ics.hyracks</groupId> |
| 30 | <artifactId>hyracks-dataflow-std</artifactId> |
Ian Maxon | 1f30d4e | 2014-09-19 15:58:43 -0700 | [diff] [blame^] | 31 | <version>0.2.13</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 32 | <scope>compile</scope> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>edu.uci.ics.hyracks.examples.compat</groupId> |
| 36 | <artifactId>hadoopcompathelper</artifactId> |
Ian Maxon | 1f30d4e | 2014-09-19 15:58:43 -0700 | [diff] [blame^] | 37 | <version>0.2.13</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 38 | <type>jar</type> |
| 39 | <scope>compile</scope> |
| 40 | </dependency> |
| 41 | </dependencies> |
| 42 | <build> |
| 43 | <plugins> |
| 44 | <plugin> |
| 45 | <groupId>org.apache.maven.plugins</groupId> |
| 46 | <artifactId>maven-compiler-plugin</artifactId> |
| 47 | <version>2.0.2</version> |
| 48 | <configuration> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 49 | <source>1.7</source> |
| 50 | <target>1.7</target> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 51 | </configuration> |
| 52 | </plugin> |
| 53 | <plugin> |
| 54 | <groupId>org.codehaus.mojo</groupId> |
| 55 | <artifactId>appassembler-maven-plugin</artifactId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 56 | <version>1.3</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 57 | <executions> |
| 58 | <execution> |
| 59 | <configuration> |
| 60 | <programs> |
| 61 | <program> |
| 62 | <mainClass>edu.uci.ics.hyracks.examples.compat.client.WordCountCompatibility</mainClass> |
| 63 | <name>hadoopcompatclient</name> |
| 64 | </program> |
| 65 | </programs> |
| 66 | <repositoryLayout>flat</repositoryLayout> |
| 67 | <repositoryName>lib</repositoryName> |
| 68 | </configuration> |
| 69 | <phase>package</phase> |
| 70 | <goals> |
| 71 | <goal>assemble</goal> |
| 72 | </goals> |
| 73 | </execution> |
| 74 | </executions> |
| 75 | </plugin> |
| 76 | <plugin> |
| 77 | <artifactId>maven-assembly-plugin</artifactId> |
| 78 | <version>2.2-beta-5</version> |
| 79 | <executions> |
| 80 | <execution> |
| 81 | <configuration> |
| 82 | <descriptors> |
| 83 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 84 | </descriptors> |
| 85 | </configuration> |
| 86 | <phase>package</phase> |
| 87 | <goals> |
| 88 | <goal>attached</goal> |
| 89 | </goals> |
| 90 | </execution> |
| 91 | </executions> |
| 92 | </plugin> |
| 93 | </plugins> |
| 94 | </build> |
| 95 | </project> |