blob: d593ef9cf5c62f7332390e16311379593b38b355 [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>
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>