blob: 4d8cee11db08cc31d3c8b4557272583ebee2cd23 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
Ian Maxond8857792015-09-11 14:19:53 -07002 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
Till Westmann276bbc22013-06-05 18:56:27 -070018 !-->
Ian Maxond8857792015-09-11 14:19:53 -070019
vinayakb0c860392012-10-06 18:47:20 +000020<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">
21 <modelVersion>4.0.0</modelVersion>
Ian Maxone915e8c2015-07-01 17:03:31 -070022 <groupId>org.apache.hyracks.examples.compat</groupId>
vinayakb0c860392012-10-06 18:47:20 +000023 <artifactId>hadoopcompatclient</artifactId>
buyingyi8d79d162012-10-22 23:04:47 +000024 <name>hadoopcompatclient</name>
vinayakb0c860392012-10-06 18:47:20 +000025
26 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070027 <groupId>org.apache.hyracks.examples</groupId>
vinayakb0c860392012-10-06 18:47:20 +000028 <artifactId>hadoop-compat-example</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070029 <version>0.2.16-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000030 </parent>
31
32 <dependencies>
33 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070034 <groupId>org.apache.hyracks</groupId>
vinayakb0c860392012-10-06 18:47:20 +000035 <artifactId>hyracks-dataflow-std</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070036 <version>0.2.16-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000037 <scope>compile</scope>
38 </dependency>
39 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070040 <groupId>org.apache.hyracks.examples.compat</groupId>
vinayakb0c860392012-10-06 18:47:20 +000041 <artifactId>hadoopcompathelper</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070042 <version>0.2.16-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000043 <type>jar</type>
44 <scope>compile</scope>
45 </dependency>
46 </dependencies>
47 <build>
48 <plugins>
49 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-compiler-plugin</artifactId>
52 <version>2.0.2</version>
53 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000054 <source>1.7</source>
55 <target>1.7</target>
vinayakb0c860392012-10-06 18:47:20 +000056 </configuration>
57 </plugin>
58 <plugin>
59 <groupId>org.codehaus.mojo</groupId>
60 <artifactId>appassembler-maven-plugin</artifactId>
buyingyi55df5212013-03-24 07:20:08 +000061 <version>1.3</version>
vinayakb0c860392012-10-06 18:47:20 +000062 <executions>
63 <execution>
64 <configuration>
65 <programs>
66 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070067 <mainClass>org.apache.hyracks.examples.compat.client.WordCountCompatibility</mainClass>
vinayakb0c860392012-10-06 18:47:20 +000068 <name>hadoopcompatclient</name>
69 </program>
70 </programs>
71 <repositoryLayout>flat</repositoryLayout>
72 <repositoryName>lib</repositoryName>
73 </configuration>
74 <phase>package</phase>
75 <goals>
76 <goal>assemble</goal>
77 </goals>
78 </execution>
79 </executions>
80 </plugin>
81 <plugin>
82 <artifactId>maven-assembly-plugin</artifactId>
83 <version>2.2-beta-5</version>
84 <executions>
85 <execution>
86 <configuration>
87 <descriptors>
88 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
89 </descriptors>
90 </configuration>
91 <phase>package</phase>
92 <goals>
93 <goal>attached</goal>
94 </goals>
95 </execution>
96 </executions>
97 </plugin>
98 </plugins>
99 </build>
100</project>