vinayakb | cb36c5d | 2010-09-30 20:57:28 +0000 | [diff] [blame] | 1 | <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.text</groupId> |
| 4 | <artifactId>textclient</artifactId> |
vinayakb | 01eac89 | 2012-09-28 02:24:45 +0000 | [diff] [blame] | 5 | <version>0.2.2-SNAPSHOT</version> |
vinayakb | cb36c5d | 2010-09-30 20:57:28 +0000 | [diff] [blame] | 6 | |
| 7 | <parent> |
| 8 | <groupId>edu.uci.ics.hyracks.examples</groupId> |
| 9 | <artifactId>text-example</artifactId> |
vinayakb | 01eac89 | 2012-09-28 02:24:45 +0000 | [diff] [blame] | 10 | <version>0.2.2-SNAPSHOT</version> |
vinayakb | cb36c5d | 2010-09-30 20:57:28 +0000 | [diff] [blame] | 11 | </parent> |
| 12 | |
| 13 | <dependencies> |
| 14 | <dependency> |
| 15 | <groupId>edu.uci.ics.hyracks</groupId> |
| 16 | <artifactId>hyracks-dataflow-std</artifactId> |
vinayakb | 01eac89 | 2012-09-28 02:24:45 +0000 | [diff] [blame] | 17 | <version>0.2.2-SNAPSHOT</version> |
vinayakb | cb36c5d | 2010-09-30 20:57:28 +0000 | [diff] [blame] | 18 | <scope>compile</scope> |
| 19 | </dependency> |
| 20 | <dependency> |
| 21 | <groupId>edu.uci.ics.hyracks.examples.text</groupId> |
| 22 | <artifactId>texthelper</artifactId> |
vinayakb | 01eac89 | 2012-09-28 02:24:45 +0000 | [diff] [blame] | 23 | <version>0.2.2-SNAPSHOT</version> |
vinayakb | cb36c5d | 2010-09-30 20:57:28 +0000 | [diff] [blame] | 24 | <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> |
| 35 | <source>1.6</source> |
| 36 | <target>1.6</target> |
| 37 | </configuration> |
| 38 | </plugin> |
| 39 | <plugin> |
| 40 | <groupId>org.codehaus.mojo</groupId> |
| 41 | <artifactId>appassembler-maven-plugin</artifactId> |
| 42 | <executions> |
| 43 | <execution> |
vinayakb | 25206b6 | 2012-03-13 08:50:40 +0000 | [diff] [blame] | 44 | <id>textclient</id> |
vinayakb | cb36c5d | 2010-09-30 20:57:28 +0000 | [diff] [blame] | 45 | <configuration> |
| 46 | <programs> |
| 47 | <program> |
| 48 | <mainClass>edu.uci.ics.hyracks.examples.text.client.WordCountMain</mainClass> |
| 49 | <name>textclient</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> |
vinayakb | 25206b6 | 2012-03-13 08:50:40 +0000 | [diff] [blame] | 60 | <execution> |
| 61 | <id>groupclient</id> |
| 62 | <configuration> |
| 63 | <programs> |
| 64 | <program> |
| 65 | <mainClass>edu.uci.ics.hyracks.examples.text.client.ExternalGroupClient</mainClass> |
| 66 | <name>groupclient</name> |
| 67 | </program> |
| 68 | </programs> |
| 69 | <repositoryLayout>flat</repositoryLayout> |
| 70 | <repositoryName>lib</repositoryName> |
| 71 | </configuration> |
| 72 | <phase>package</phase> |
| 73 | <goals> |
| 74 | <goal>assemble</goal> |
| 75 | </goals> |
| 76 | </execution> |
vinayakb | cb36c5d | 2010-09-30 20:57:28 +0000 | [diff] [blame] | 77 | </executions> |
| 78 | </plugin> |
| 79 | <plugin> |
| 80 | <artifactId>maven-assembly-plugin</artifactId> |
| 81 | <version>2.2-beta-5</version> |
| 82 | <executions> |
| 83 | <execution> |
| 84 | <configuration> |
| 85 | <descriptors> |
| 86 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 87 | </descriptors> |
| 88 | </configuration> |
| 89 | <phase>package</phase> |
| 90 | <goals> |
| 91 | <goal>attached</goal> |
| 92 | </goals> |
| 93 | </execution> |
| 94 | </executions> |
| 95 | </plugin> |
| 96 | </plugins> |
| 97 | </build> |
| 98 | </project> |