blob: e373f0d31ee25e182710ad2a23e8ab9997065f88 [file] [log] [blame]
vinayakb168d92f2010-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>
vinayakbcaf74052011-06-18 19:41:01 +00005 <version>0.1.7-SNAPSHOT</version>
vinayakb168d92f2010-09-30 20:57:28 +00006
7 <parent>
8 <groupId>edu.uci.ics.hyracks.examples</groupId>
9 <artifactId>text-example</artifactId>
vinayakbcaf74052011-06-18 19:41:01 +000010 <version>0.1.7-SNAPSHOT</version>
vinayakb168d92f2010-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>
vinayakbcaf74052011-06-18 19:41:01 +000017 <version>0.1.7-SNAPSHOT</version>
vinayakb168d92f2010-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>
vinayakbcaf74052011-06-18 19:41:01 +000023 <version>0.1.7-SNAPSHOT</version>
vinayakb168d92f2010-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>
44 <configuration>
45 <programs>
46 <program>
47 <mainClass>edu.uci.ics.hyracks.examples.text.client.WordCountMain</mainClass>
48 <name>textclient</name>
49 </program>
50 </programs>
51 <repositoryLayout>flat</repositoryLayout>
52 <repositoryName>lib</repositoryName>
53 </configuration>
54 <phase>package</phase>
55 <goals>
56 <goal>assemble</goal>
57 </goals>
58 </execution>
59 </executions>
60 </plugin>
61 <plugin>
62 <artifactId>maven-assembly-plugin</artifactId>
63 <version>2.2-beta-5</version>
64 <executions>
65 <execution>
66 <configuration>
67 <descriptors>
68 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
69 </descriptors>
70 </configuration>
71 <phase>package</phase>
72 <goals>
73 <goal>attached</goal>
74 </goals>
75 </execution>
76 </executions>
77 </plugin>
78 </plugins>
79 </build>
80</project>