blob: 1194a4a1d9c73a17c1abf2d0c0e937b4f2804150 [file] [log] [blame]
vinayakbcb16f0d2010-10-19 19:22:02 +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>
vinayakbfeba3682011-02-21 03:44:55 +00005 <version>0.1.4</version>
vinayakbcb16f0d2010-10-19 19:22:02 +00006
7 <parent>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <artifactId>hyracks</artifactId>
vinayakbfeba3682011-02-21 03:44:55 +000010 <version>0.1.4</version>
vinayakbcb16f0d2010-10-19 19:22:02 +000011 </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>
32 <mainClass>edu.uci.ics.hyracks.hadoop.compat.CompatibilityLayer</mainClass>
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>
vinayakbfeba3682011-02-21 03:44:55 +000082 <version>0.1.4</version>
vinayakbcb16f0d2010-10-19 19:22:02 +000083 <type>jar</type>
84 <scope>compile</scope>
85 </dependency>
86 </dependencies>
87</project>