blob: b5dd7985539d6cb9fd0477ae5683f58af8e98375 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
2 ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License");
4 ! you may not use this file except in compliance with the License.
5 ! you may obtain a copy of the License from
6 !
7 ! http://www.apache.org/licenses/LICENSE-2.0
8 !
9 ! Unless required by applicable law or agreed to in writing, software
10 ! distributed under the License is distributed on an "AS IS" BASIS,
11 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ! See the License for the specific language governing permissions and
13 ! limitations under the License.
14 !-->
vinayakb0c860392012-10-06 18:47:20 +000015<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">
16 <modelVersion>4.0.0</modelVersion>
17 <groupId>edu.uci.ics.hyracks.examples.compat</groupId>
18 <artifactId>hadoopcompatclient</artifactId>
buyingyi8d79d162012-10-22 23:04:47 +000019 <name>hadoopcompatclient</name>
vinayakb0c860392012-10-06 18:47:20 +000020
21 <parent>
22 <groupId>edu.uci.ics.hyracks.examples</groupId>
23 <artifactId>hadoop-compat-example</artifactId>
buyingyi1cf801c2013-07-22 01:41:07 -070024 <version>0.2.10-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000025 </parent>
26
27 <dependencies>
28 <dependency>
29 <groupId>edu.uci.ics.hyracks</groupId>
30 <artifactId>hyracks-dataflow-std</artifactId>
buyingyi1cf801c2013-07-22 01:41:07 -070031 <version>0.2.10-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000032 <scope>compile</scope>
33 </dependency>
34 <dependency>
35 <groupId>edu.uci.ics.hyracks.examples.compat</groupId>
36 <artifactId>hadoopcompathelper</artifactId>
buyingyi1cf801c2013-07-22 01:41:07 -070037 <version>0.2.10-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000038 <type>jar</type>
39 <scope>compile</scope>
40 </dependency>
41 </dependencies>
42 <build>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-compiler-plugin</artifactId>
47 <version>2.0.2</version>
48 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000049 <source>1.7</source>
50 <target>1.7</target>
vinayakb0c860392012-10-06 18:47:20 +000051 </configuration>
52 </plugin>
53 <plugin>
54 <groupId>org.codehaus.mojo</groupId>
55 <artifactId>appassembler-maven-plugin</artifactId>
buyingyi55df5212013-03-24 07:20:08 +000056 <version>1.3</version>
vinayakb0c860392012-10-06 18:47:20 +000057 <executions>
58 <execution>
59 <configuration>
60 <programs>
61 <program>
62 <mainClass>edu.uci.ics.hyracks.examples.compat.client.WordCountCompatibility</mainClass>
63 <name>hadoopcompatclient</name>
64 </program>
65 </programs>
66 <repositoryLayout>flat</repositoryLayout>
67 <repositoryName>lib</repositoryName>
68 </configuration>
69 <phase>package</phase>
70 <goals>
71 <goal>assemble</goal>
72 </goals>
73 </execution>
74 </executions>
75 </plugin>
76 <plugin>
77 <artifactId>maven-assembly-plugin</artifactId>
78 <version>2.2-beta-5</version>
79 <executions>
80 <execution>
81 <configuration>
82 <descriptors>
83 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
84 </descriptors>
85 </configuration>
86 <phase>package</phase>
87 <goals>
88 <goal>attached</goal>
89 </goals>
90 </execution>
91 </executions>
92 </plugin>
93 </plugins>
94 </build>
95</project>