Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame^] | 2 | ! 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 Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 18 | !--> |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame^] | 19 | |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 20 | <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> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 22 | <artifactId>textclient</artifactId> |
buyingyi | 8d79d16 | 2012-10-22 23:04:47 +0000 | [diff] [blame] | 23 | <name>textclient</name> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 24 | |
| 25 | <parent> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 26 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 27 | <artifactId>text-example</artifactId> |
Ian Maxon | b86e439 | 2015-09-11 13:24:39 -0700 | [diff] [blame] | 28 | <version>0.2.16-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 29 | </parent> |
| 30 | |
| 31 | <dependencies> |
| 32 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 33 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 34 | <artifactId>hyracks-dataflow-std</artifactId> |
Ian Maxon | b86e439 | 2015-09-11 13:24:39 -0700 | [diff] [blame] | 35 | <version>0.2.16-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 36 | <scope>compile</scope> |
| 37 | </dependency> |
| 38 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 39 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 40 | <artifactId>texthelper</artifactId> |
Ian Maxon | b86e439 | 2015-09-11 13:24:39 -0700 | [diff] [blame] | 41 | <version>0.2.16-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 42 | <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> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 53 | <source>1.7</source> |
| 54 | <target>1.7</target> |
| 55 | <fork>true</fork> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 56 | </configuration> |
| 57 | </plugin> |
| 58 | <plugin> |
| 59 | <groupId>org.codehaus.mojo</groupId> |
| 60 | <artifactId>appassembler-maven-plugin</artifactId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 61 | <version>1.3</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 62 | <executions> |
| 63 | <execution> |
| 64 | <id>textclient</id> |
| 65 | <configuration> |
| 66 | <programs> |
| 67 | <program> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 68 | <mainClass>org.apache.hyracks.examples.text.client.WordCountMain</mainClass> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 69 | <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 Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 85 | <mainClass>org.apache.hyracks.examples.text.client.ExternalGroupClient</mainClass> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 86 | <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> |