blob: fc8353693861e03acf7ad7c81df43fd7a2d445bd [file] [log] [blame]
vinayakbbd96b032010-11-15 09:43:51 +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.onlineaggregation</groupId>
4 <artifactId>onlineaggregationclient</artifactId>
5 <version>0.1.3-SNAPSHOT</version>
6
7 <parent>
8 <groupId>edu.uci.ics.hyracks.examples</groupId>
9 <artifactId>onlineaggregation-example</artifactId>
10 <version>0.1.3-SNAPSHOT</version>
11 </parent>
12
13 <dependencies>
14 <dependency>
15 <groupId>edu.uci.ics.hyracks</groupId>
16 <artifactId>hyracks-dataflow-std</artifactId>
17 <version>0.1.3-SNAPSHOT</version>
18 <scope>compile</scope>
19 </dependency>
20 <dependency>
21 <groupId>edu.uci.ics.hyracks.examples.onlineaggregation</groupId>
22 <artifactId>onlineaggregationhelper</artifactId>
23 <version>0.1.3-SNAPSHOT</version>
24 <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>
vinayakb366592c2010-11-15 22:06:58 +000047 <mainClass>edu.uci.ics.hyracks.examples.onlineaggregation.client.MapReduceMain</mainClass>
vinayakbbd96b032010-11-15 09:43:51 +000048 <name>onlineaggregationclient</name>
49 </program>
vinayakb366592c2010-11-15 22:06:58 +000050 <program>
51 <mainClass>edu.uci.ics.hyracks.examples.onlineaggregation.client.WordCountJobGen</mainClass>
52 <name>wcgen</name>
53 </program>
tcondie6e35b202010-12-16 01:44:56 +000054 <program>
55 <mainClass>edu.uci.ics.hyracks.examples.onlineaggregation.client.StateCountJobGen</mainClass>
56 <name>stgen</name>
57 </program>
vinayakbbd96b032010-11-15 09:43:51 +000058 </programs>
59 <repositoryLayout>flat</repositoryLayout>
60 <repositoryName>lib</repositoryName>
61 </configuration>
62 <phase>package</phase>
63 <goals>
64 <goal>assemble</goal>
65 </goals>
66 </execution>
67 </executions>
68 </plugin>
69 <plugin>
70 <artifactId>maven-assembly-plugin</artifactId>
71 <version>2.2-beta-5</version>
72 <executions>
73 <execution>
74 <configuration>
75 <descriptors>
76 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
77 </descriptors>
78 </configuration>
79 <phase>package</phase>
80 <goals>
81 <goal>attached</goal>
82 </goals>
83 </execution>
84 </executions>
85 </plugin>
86 </plugins>
87 </build>
88</project>