blob: f52536c0c3343eb370485679e63eda99d5d46b58 [file] [log] [blame]
vinayakb59d505d2012-10-29 10:38: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.examples.compat</groupId>
4 <artifactId>hadoopcompatclient</artifactId>
vinayakb59d505d2012-10-29 10:38:02 +00005 <name>hadoopcompatclient</name>
6
7 <parent>
8 <groupId>edu.uci.ics.hyracks.examples</groupId>
9 <artifactId>hadoop-compat-example</artifactId>
vinayakbf40317d2013-03-25 00:33:09 +000010 <version>0.2.3-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000011 </parent>
12
13 <dependencies>
14 <dependency>
15 <groupId>edu.uci.ics.hyracks</groupId>
16 <artifactId>hyracks-dataflow-std</artifactId>
vinayakbf40317d2013-03-25 00:33:09 +000017 <version>0.2.3-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000018 <scope>compile</scope>
19 </dependency>
20 <dependency>
21 <groupId>edu.uci.ics.hyracks.examples.compat</groupId>
22 <artifactId>hadoopcompathelper</artifactId>
vinayakbf40317d2013-03-25 00:33:09 +000023 <version>0.2.3-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000024 <type>jar</type>
25 <scope>compile</scope>
26 </dependency>
27 </dependencies>
28 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-compiler-plugin</artifactId>
33 <version>2.0.2</version>
34 <configuration>
buyingyi5df938f2013-03-24 07:20:08 +000035 <source>1.7</source>
36 <target>1.7</target>
vinayakb59d505d2012-10-29 10:38:02 +000037 </configuration>
38 </plugin>
39 <plugin>
40 <groupId>org.codehaus.mojo</groupId>
41 <artifactId>appassembler-maven-plugin</artifactId>
buyingyi5df938f2013-03-24 07:20:08 +000042 <version>1.3</version>
vinayakb59d505d2012-10-29 10:38:02 +000043 <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>