vinayakb | 0c86039 | 2012-10-06 18:47:20 +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> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 3 | <artifactId>textclient</artifactId> |
buyingyi | 8d79d16 | 2012-10-22 23:04:47 +0000 | [diff] [blame] | 4 | <name>textclient</name> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 5 | |
| 6 | <parent> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame^] | 7 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 8 | <artifactId>text-example</artifactId> |
vinayakb | 6952551 | 2013-03-25 03:17:32 +0000 | [diff] [blame] | 9 | <version>0.2.4-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 10 | </parent> |
| 11 | |
| 12 | <dependencies> |
| 13 | <dependency> |
| 14 | <groupId>edu.uci.ics.hyracks</groupId> |
| 15 | <artifactId>hyracks-dataflow-std</artifactId> |
vinayakb | 6952551 | 2013-03-25 03:17:32 +0000 | [diff] [blame] | 16 | <version>0.2.4-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 17 | <scope>compile</scope> |
| 18 | </dependency> |
| 19 | <dependency> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame^] | 20 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 21 | <artifactId>texthelper</artifactId> |
vinayakb | 6952551 | 2013-03-25 03:17:32 +0000 | [diff] [blame] | 22 | <version>0.2.4-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 23 | <type>jar</type> |
| 24 | <scope>compile</scope> |
| 25 | </dependency> |
| 26 | </dependencies> |
| 27 | <build> |
| 28 | <plugins> |
| 29 | <plugin> |
| 30 | <groupId>org.apache.maven.plugins</groupId> |
| 31 | <artifactId>maven-compiler-plugin</artifactId> |
| 32 | <version>2.0.2</version> |
| 33 | <configuration> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 34 | <source>1.7</source> |
| 35 | <target>1.7</target> |
| 36 | <fork>true</fork> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 37 | </configuration> |
| 38 | </plugin> |
| 39 | <plugin> |
| 40 | <groupId>org.codehaus.mojo</groupId> |
| 41 | <artifactId>appassembler-maven-plugin</artifactId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 42 | <version>1.3</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 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> |