blob: 4aace73a893ce4eed47faf013d3fa68e84d324bb [file] [log] [blame]
vinayakb59d505d2012-10-29 10:38:02 +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>
vinayakb59d505d2012-10-29 10:38:02 +00005 <name>textclient</name>
6
7 <parent>
8 <groupId>edu.uci.ics.hyracks.examples</groupId>
9 <artifactId>text-example</artifactId>
vinayakb575edbe2012-10-29 15:46:12 +000010 <version>0.2.3-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000011 </parent>
12
13 <dependencies>
14 <dependency>
15 <groupId>edu.uci.ics.hyracks</groupId>
16 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb575edbe2012-10-29 15:46:12 +000017 <version>0.2.3-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000018 <scope>compile</scope>
19 </dependency>
20 <dependency>
21 <groupId>edu.uci.ics.hyracks.examples.text</groupId>
22 <artifactId>texthelper</artifactId>
vinayakb575edbe2012-10-29 15:46:12 +000023 <version>0.2.3-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +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>
buyingyi5df938f2013-03-24 07:20:08 +000035 <source>1.7</source>
36 <target>1.7</target>
37 <fork>true</fork>
vinayakb59d505d2012-10-29 10:38:02 +000038 </configuration>
39 </plugin>
40 <plugin>
41 <groupId>org.codehaus.mojo</groupId>
42 <artifactId>appassembler-maven-plugin</artifactId>
buyingyi5df938f2013-03-24 07:20:08 +000043 <version>1.3</version>
vinayakb59d505d2012-10-29 10:38:02 +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>