vinayakb | cb16f0d | 2010-10-19 19:22: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</groupId> |
| 4 | <artifactId>hyracks-hadoop-compat</artifactId> |
zheilbron | e74da94 | 2012-04-05 21:43:52 +0000 | [diff] [blame] | 5 | <version>0.2.1-SNAPSHOT</version> |
vinayakb | cb16f0d | 2010-10-19 19:22:02 +0000 | [diff] [blame] | 6 | |
| 7 | <parent> |
| 8 | <groupId>edu.uci.ics.hyracks</groupId> |
| 9 | <artifactId>hyracks</artifactId> |
zheilbron | e74da94 | 2012-04-05 21:43:52 +0000 | [diff] [blame] | 10 | <version>0.2.1-SNAPSHOT</version> |
vinayakb | cb16f0d | 2010-10-19 19:22:02 +0000 | [diff] [blame] | 11 | </parent> |
| 12 | |
| 13 | <build> |
| 14 | <plugins> |
| 15 | <plugin> |
| 16 | <groupId>org.apache.maven.plugins</groupId> |
| 17 | <artifactId>maven-compiler-plugin</artifactId> |
| 18 | <version>2.0.2</version> |
| 19 | <configuration> |
| 20 | <source>1.6</source> |
| 21 | <target>1.6</target> |
| 22 | </configuration> |
| 23 | </plugin> |
| 24 | <plugin> |
| 25 | <groupId>org.codehaus.mojo</groupId> |
| 26 | <artifactId>appassembler-maven-plugin</artifactId> |
| 27 | <executions> |
| 28 | <execution> |
| 29 | <configuration> |
| 30 | <programs> |
| 31 | <program> |
alexander.behm | 2b5c3f7 | 2012-06-12 04:06:37 +0000 | [diff] [blame] | 32 | <mainClass>edu.uci.ics.hyracks.hadoop.compat.driver.CompatibilityLayer</mainClass> |
vinayakb | cb16f0d | 2010-10-19 19:22:02 +0000 | [diff] [blame] | 33 | <name>hadoop-compat</name> |
| 34 | </program> |
| 35 | </programs> |
| 36 | <repositoryLayout>flat</repositoryLayout> |
| 37 | <repositoryName>lib</repositoryName> |
| 38 | </configuration> |
| 39 | <phase>package</phase> |
| 40 | <goals> |
| 41 | <goal>assemble</goal> |
| 42 | </goals> |
| 43 | </execution> |
| 44 | </executions> |
| 45 | </plugin> |
| 46 | <plugin> |
| 47 | <artifactId>maven-assembly-plugin</artifactId> |
| 48 | <version>2.2-beta-5</version> |
| 49 | <executions> |
| 50 | <execution> |
| 51 | <configuration> |
| 52 | <descriptors> |
| 53 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 54 | </descriptors> |
| 55 | </configuration> |
| 56 | <phase>package</phase> |
| 57 | <goals> |
| 58 | <goal>attached</goal> |
| 59 | </goals> |
| 60 | </execution> |
| 61 | </executions> |
| 62 | </plugin> |
| 63 | </plugins> |
| 64 | </build> |
| 65 | <dependencies> |
| 66 | <dependency> |
| 67 | <groupId>org.apache.hadoop</groupId> |
| 68 | <artifactId>hadoop-core</artifactId> |
| 69 | <version>0.20.2</version> |
| 70 | <type>jar</type> |
| 71 | <scope>compile</scope> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>edu.uci.ics.dcache</groupId> |
| 75 | <artifactId>dcache-client</artifactId> |
| 76 | <version>0.0.1</version> |
| 77 | <scope>compile</scope> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>edu.uci.ics.hyracks</groupId> |
| 81 | <artifactId>hyracks-dataflow-hadoop</artifactId> |
zheilbron | e74da94 | 2012-04-05 21:43:52 +0000 | [diff] [blame] | 82 | <version>0.2.1-SNAPSHOT</version> |
vinayakb | cb16f0d | 2010-10-19 19:22:02 +0000 | [diff] [blame] | 83 | <type>jar</type> |
| 84 | <scope>compile</scope> |
| 85 | </dependency> |
| 86 | </dependencies> |
| 87 | </project> |