blob: 87aaaa711b23aa1d47644e16b00c9f9b03617a09 [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>
buyingyi55df5212013-03-24 07:20:08 +000021 <source>1.7</source>
22 <target>1.7</target>
23 <fork>true</fork>
vinayakb0c860392012-10-06 18:47:20 +000024 </configuration>
25 </plugin>
26 <plugin>
27 <groupId>org.codehaus.mojo</groupId>
28 <artifactId>appassembler-maven-plugin</artifactId>
buyingyi55df5212013-03-24 07:20:08 +000029 <version>1.3</version>
vinayakb0c860392012-10-06 18:47:20 +000030 <executions>
31 <execution>
32 <configuration>
33 <programs>
34 <program>
35 <mainClass>edu.uci.ics.hyracks.hadoop.compat.driver.CompatibilityLayer</mainClass>
36 <name>hadoop-compat</name>
37 </program>
38 </programs>
39 <repositoryLayout>flat</repositoryLayout>
40 <repositoryName>lib</repositoryName>
41 </configuration>
42 <phase>package</phase>
43 <goals>
44 <goal>assemble</goal>
45 </goals>
46 </execution>
47 </executions>
48 </plugin>
49 <plugin>
50 <artifactId>maven-assembly-plugin</artifactId>
51 <version>2.2-beta-5</version>
52 <executions>
53 <execution>
54 <configuration>
55 <descriptors>
56 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
57 </descriptors>
58 </configuration>
59 <phase>package</phase>
60 <goals>
61 <goal>attached</goal>
62 </goals>
63 </execution>
64 </executions>
65 </plugin>
66 </plugins>
67 </build>
68 <dependencies>
69 <dependency>
70 <groupId>org.apache.hadoop</groupId>
71 <artifactId>hadoop-core</artifactId>
72 <version>0.20.2</version>
73 <type>jar</type>
74 <scope>compile</scope>
75 </dependency>
76 <dependency>
77 <groupId>edu.uci.ics.dcache</groupId>
78 <artifactId>dcache-client</artifactId>
79 <version>0.0.1</version>
80 <scope>compile</scope>
81 </dependency>
82 <dependency>
83 <groupId>edu.uci.ics.hyracks</groupId>
84 <artifactId>hyracks-dataflow-hadoop</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000085 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000086 <type>jar</type>
87 <scope>compile</scope>
88 </dependency>
89 </dependencies>
90</project>