blob: b420b2f15bf36890fbe1598e768a5d3e87333bc5 [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>
vinayakb0c860392012-10-06 18:47:20 +000022 <artifactId>textclient</artifactId>
buyingyi8d79d162012-10-22 23:04:47 +000023 <name>textclient</name>
vinayakb0c860392012-10-06 18:47:20 +000024
25 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070026 <groupId>org.apache.hyracks</groupId>
vinayakb0c860392012-10-06 18:47:20 +000027 <artifactId>text-example</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070028 <version>0.2.16-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000029 </parent>
30
31 <dependencies>
32 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070033 <groupId>org.apache.hyracks</groupId>
vinayakb0c860392012-10-06 18:47:20 +000034 <artifactId>hyracks-dataflow-std</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070035 <version>0.2.16-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000036 <scope>compile</scope>
37 </dependency>
38 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070039 <groupId>org.apache.hyracks</groupId>
vinayakb0c860392012-10-06 18:47:20 +000040 <artifactId>texthelper</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070041 <version>0.2.16-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000042 <type>jar</type>
43 <scope>compile</scope>
44 </dependency>
45 </dependencies>
46 <build>
47 <plugins>
48 <plugin>
49 <groupId>org.apache.maven.plugins</groupId>
50 <artifactId>maven-compiler-plugin</artifactId>
51 <version>2.0.2</version>
52 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000053 <source>1.7</source>
54 <target>1.7</target>
55 <fork>true</fork>
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 <id>textclient</id>
65 <configuration>
66 <programs>
67 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070068 <mainClass>org.apache.hyracks.examples.text.client.WordCountMain</mainClass>
vinayakb0c860392012-10-06 18:47:20 +000069 <name>textclient</name>
70 </program>
71 </programs>
72 <repositoryLayout>flat</repositoryLayout>
73 <repositoryName>lib</repositoryName>
74 </configuration>
75 <phase>package</phase>
76 <goals>
77 <goal>assemble</goal>
78 </goals>
79 </execution>
80 <execution>
81 <id>groupclient</id>
82 <configuration>
83 <programs>
84 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070085 <mainClass>org.apache.hyracks.examples.text.client.ExternalGroupClient</mainClass>
vinayakb0c860392012-10-06 18:47:20 +000086 <name>groupclient</name>
87 </program>
88 </programs>
89 <repositoryLayout>flat</repositoryLayout>
90 <repositoryName>lib</repositoryName>
91 </configuration>
92 <phase>package</phase>
93 <goals>
94 <goal>assemble</goal>
95 </goals>
96 </execution>
97 </executions>
98 </plugin>
99 <plugin>
100 <artifactId>maven-assembly-plugin</artifactId>
101 <version>2.2-beta-5</version>
102 <executions>
103 <execution>
104 <configuration>
105 <descriptors>
106 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
107 </descriptors>
108 </configuration>
109 <phase>package</phase>
110 <goals>
111 <goal>attached</goal>
112 </goals>
113 </execution>
114 </executions>
115 </plugin>
116 </plugins>
117 </build>
118</project>