blob: 3426293aedfdaf521e0ddf98f31d1dab9cb445f3 [file] [log] [blame]
vinayakb0c860392012-10-06 18:47:20 +00001<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>
vinayakb70c821c2012-10-29 15:46:12 +00005 <version>0.2.3-SNAPSHOT</version>
buyingyi8d79d162012-10-22 23:04:47 +00006 <name>hyracks-hadoop-compat</name>
vinayakb0c860392012-10-06 18:47:20 +00007
8 <parent>
9 <groupId>edu.uci.ics.hyracks</groupId>
10 <artifactId>hyracks</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000011 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000012 </parent>
13
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 <version>2.0.2</version>
20 <configuration>
21 <source>1.6</source>
22 <target>1.6</target>
23 </configuration>
24 </plugin>
25 <plugin>
26 <groupId>org.codehaus.mojo</groupId>
27 <artifactId>appassembler-maven-plugin</artifactId>
vinayakba8d545c2013-02-05 05:54:47 +000028 <version>1.3</version>
vinayakb0c860392012-10-06 18:47:20 +000029 <executions>
30 <execution>
31 <configuration>
32 <programs>
33 <program>
34 <mainClass>edu.uci.ics.hyracks.hadoop.compat.driver.CompatibilityLayer</mainClass>
35 <name>hadoop-compat</name>
36 </program>
37 </programs>
38 <repositoryLayout>flat</repositoryLayout>
39 <repositoryName>lib</repositoryName>
40 </configuration>
41 <phase>package</phase>
42 <goals>
43 <goal>assemble</goal>
44 </goals>
45 </execution>
46 </executions>
47 </plugin>
48 <plugin>
49 <artifactId>maven-assembly-plugin</artifactId>
50 <version>2.2-beta-5</version>
51 <executions>
52 <execution>
53 <configuration>
54 <descriptors>
55 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
56 </descriptors>
57 </configuration>
58 <phase>package</phase>
59 <goals>
60 <goal>attached</goal>
61 </goals>
62 </execution>
63 </executions>
64 </plugin>
65 </plugins>
66 </build>
67 <dependencies>
68 <dependency>
69 <groupId>org.apache.hadoop</groupId>
70 <artifactId>hadoop-core</artifactId>
71 <version>0.20.2</version>
72 <type>jar</type>
73 <scope>compile</scope>
74 </dependency>
75 <dependency>
76 <groupId>edu.uci.ics.dcache</groupId>
77 <artifactId>dcache-client</artifactId>
78 <version>0.0.1</version>
79 <scope>compile</scope>
80 </dependency>
81 <dependency>
82 <groupId>edu.uci.ics.hyracks</groupId>
83 <artifactId>hyracks-dataflow-hadoop</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000084 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000085 <type>jar</type>
86 <scope>compile</scope>
87 </dependency>
88 </dependencies>
89</project>