blob: 353ec06e9ad541afc1b05e19c553141ca0e9d054 [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>
5 <version>0.2.2-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>
11 <version>0.2.2-SNAPSHOT</version>
12 </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>
28 <executions>
29 <execution>
30 <configuration>
31 <programs>
32 <program>
33 <mainClass>edu.uci.ics.hyracks.hadoop.compat.driver.CompatibilityLayer</mainClass>
34 <name>hadoop-compat</name>
35 </program>
36 </programs>
37 <repositoryLayout>flat</repositoryLayout>
38 <repositoryName>lib</repositoryName>
39 </configuration>
40 <phase>package</phase>
41 <goals>
42 <goal>assemble</goal>
43 </goals>
44 </execution>
45 </executions>
46 </plugin>
47 <plugin>
48 <artifactId>maven-assembly-plugin</artifactId>
49 <version>2.2-beta-5</version>
50 <executions>
51 <execution>
52 <configuration>
53 <descriptors>
54 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
55 </descriptors>
56 </configuration>
57 <phase>package</phase>
58 <goals>
59 <goal>attached</goal>
60 </goals>
61 </execution>
62 </executions>
63 </plugin>
64 </plugins>
65 </build>
66 <dependencies>
67 <dependency>
68 <groupId>org.apache.hadoop</groupId>
69 <artifactId>hadoop-core</artifactId>
70 <version>0.20.2</version>
71 <type>jar</type>
72 <scope>compile</scope>
73 </dependency>
74 <dependency>
75 <groupId>edu.uci.ics.dcache</groupId>
76 <artifactId>dcache-client</artifactId>
77 <version>0.0.1</version>
78 <scope>compile</scope>
79 </dependency>
80 <dependency>
81 <groupId>edu.uci.ics.hyracks</groupId>
82 <artifactId>hyracks-dataflow-hadoop</artifactId>
83 <version>0.2.2-SNAPSHOT</version>
84 <type>jar</type>
85 <scope>compile</scope>
86 </dependency>
87 </dependencies>
88</project>