blob: b96381f60281b7bac37e5b8d41bf090514d51d76 [file] [log] [blame]
vinayakbcb36c5d2010-09-30 20:57:28 +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>
vinayakb01eac892012-09-28 02:24:45 +00005 <version>0.2.2-SNAPSHOT</version>
vinayakbcb36c5d2010-09-30 20:57:28 +00006
7 <parent>
8 <groupId>edu.uci.ics.hyracks.examples</groupId>
9 <artifactId>text-example</artifactId>
vinayakb01eac892012-09-28 02:24:45 +000010 <version>0.2.2-SNAPSHOT</version>
vinayakbcb36c5d2010-09-30 20:57:28 +000011 </parent>
12
13 <dependencies>
14 <dependency>
15 <groupId>edu.uci.ics.hyracks</groupId>
16 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb01eac892012-09-28 02:24:45 +000017 <version>0.2.2-SNAPSHOT</version>
vinayakbcb36c5d2010-09-30 20:57:28 +000018 <scope>compile</scope>
19 </dependency>
20 <dependency>
21 <groupId>edu.uci.ics.hyracks.examples.text</groupId>
22 <artifactId>texthelper</artifactId>
vinayakb01eac892012-09-28 02:24:45 +000023 <version>0.2.2-SNAPSHOT</version>
vinayakbcb36c5d2010-09-30 20:57:28 +000024 <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>
vinayakb25206b62012-03-13 08:50:40 +000044 <id>textclient</id>
vinayakbcb36c5d2010-09-30 20:57:28 +000045 <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>
vinayakb25206b62012-03-13 08:50:40 +000060 <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>
vinayakbcb36c5d2010-09-30 20:57:28 +000077 </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>