blob: 11c2da2cbf2168b622547eb70792fe4893fad8cd [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.examples.compat</groupId>
4 <artifactId>hadoopcompatclient</artifactId>
vinayakb4a6309b2012-10-29 15:44:02 +00005 <version>0.2.2</version>
buyingyi8d79d162012-10-22 23:04:47 +00006 <name>hadoopcompatclient</name>
vinayakb0c860392012-10-06 18:47:20 +00007
8 <parent>
9 <groupId>edu.uci.ics.hyracks.examples</groupId>
10 <artifactId>hadoop-compat-example</artifactId>
vinayakb4a6309b2012-10-29 15:44:02 +000011 <version>0.2.2</version>
vinayakb0c860392012-10-06 18:47:20 +000012 </parent>
13
14 <dependencies>
15 <dependency>
16 <groupId>edu.uci.ics.hyracks</groupId>
17 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb4a6309b2012-10-29 15:44:02 +000018 <version>0.2.2</version>
vinayakb0c860392012-10-06 18:47:20 +000019 <scope>compile</scope>
20 </dependency>
21 <dependency>
22 <groupId>edu.uci.ics.hyracks.examples.compat</groupId>
23 <artifactId>hadoopcompathelper</artifactId>
vinayakb4a6309b2012-10-29 15:44:02 +000024 <version>0.2.2</version>
vinayakb0c860392012-10-06 18:47:20 +000025 <type>jar</type>
26 <scope>compile</scope>
27 </dependency>
28 </dependencies>
29 <build>
30 <plugins>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-compiler-plugin</artifactId>
34 <version>2.0.2</version>
35 <configuration>
36 <source>1.6</source>
37 <target>1.6</target>
38 </configuration>
39 </plugin>
40 <plugin>
41 <groupId>org.codehaus.mojo</groupId>
42 <artifactId>appassembler-maven-plugin</artifactId>
43 <executions>
44 <execution>
45 <configuration>
46 <programs>
47 <program>
48 <mainClass>edu.uci.ics.hyracks.examples.compat.client.WordCountCompatibility</mainClass>
49 <name>hadoopcompatclient</name>
50 </program>
51 </programs>
52 <repositoryLayout>flat</repositoryLayout>
53 <repositoryName>lib</repositoryName>
54 </configuration>
55 <phase>package</phase>
56 <goals>
57 <goal>assemble</goal>
58 </goals>
59 </execution>
60 </executions>
61 </plugin>
62 <plugin>
63 <artifactId>maven-assembly-plugin</artifactId>
64 <version>2.2-beta-5</version>
65 <executions>
66 <execution>
67 <configuration>
68 <descriptors>
69 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
70 </descriptors>
71 </configuration>
72 <phase>package</phase>
73 <goals>
74 <goal>attached</goal>
75 </goals>
76 </execution>
77 </executions>
78 </plugin>
79 </plugins>
80 </build>
81</project>