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