blob: af72b71d0ff2bb729ac51fb70e529954442f4bc1 [file] [log] [blame]
vinayakb0c860392012-10-06 18:47:20 +00001<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>
vinayakb70c821c2012-10-29 15:46:12 +00005 <version>0.2.3-SNAPSHOT</version>
buyingyi8d79d162012-10-22 23:04:47 +00006 <name>textclient</name>
vinayakb0c860392012-10-06 18:47:20 +00007
8 <parent>
9 <groupId>edu.uci.ics.hyracks.examples</groupId>
10 <artifactId>text-example</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000011 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000012 </parent>
13
14 <dependencies>
15 <dependency>
16 <groupId>edu.uci.ics.hyracks</groupId>
17 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000018 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000019 <scope>compile</scope>
20 </dependency>
21 <dependency>
22 <groupId>edu.uci.ics.hyracks.examples.text</groupId>
23 <artifactId>texthelper</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000024 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000025 <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>
madhusudancs@gmail.coma5ed5152013-02-26 04:44:07 +000036 <source>1.7</source>
37 <target>1.7</target>
vinayakb0c860392012-10-06 18:47:20 +000038 </configuration>
39 </plugin>
40 <plugin>
41 <groupId>org.codehaus.mojo</groupId>
42 <artifactId>appassembler-maven-plugin</artifactId>
madhusudancs@gmail.com58f50562013-02-07 12:49:37 +000043 <version>1.3</version>
vinayakb0c860392012-10-06 18:47:20 +000044 <executions>
45 <execution>
46 <id>textclient</id>
47 <configuration>
48 <programs>
49 <program>
50 <mainClass>edu.uci.ics.hyracks.examples.text.client.WordCountMain</mainClass>
51 <name>textclient</name>
52 </program>
53 </programs>
54 <repositoryLayout>flat</repositoryLayout>
55 <repositoryName>lib</repositoryName>
56 </configuration>
57 <phase>package</phase>
58 <goals>
59 <goal>assemble</goal>
60 </goals>
61 </execution>
62 <execution>
63 <id>groupclient</id>
64 <configuration>
65 <programs>
66 <program>
67 <mainClass>edu.uci.ics.hyracks.examples.text.client.ExternalGroupClient</mainClass>
68 <name>groupclient</name>
69 </program>
70 </programs>
71 <repositoryLayout>flat</repositoryLayout>
72 <repositoryName>lib</repositoryName>
73 </configuration>
74 <phase>package</phase>
75 <goals>
76 <goal>assemble</goal>
77 </goals>
78 </execution>
79 </executions>
80 </plugin>
81 <plugin>
82 <artifactId>maven-assembly-plugin</artifactId>
83 <version>2.2-beta-5</version>
84 <executions>
85 <execution>
86 <configuration>
87 <descriptors>
88 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
89 </descriptors>
90 </configuration>
91 <phase>package</phase>
92 <goals>
93 <goal>attached</goal>
94 </goals>
95 </execution>
96 </executions>
97 </plugin>
98 </plugins>
99 </build>
100</project>