blob: e98a30b4a8fa5bacabb0d6e37ade1a8944410413 [file] [log] [blame]
vinayakbc8d86de2010-08-12 22:25:49 +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.tpch</groupId>
4 <artifactId>tpchclient</artifactId>
vinayakb97785f42010-08-19 20:09:01 +00005 <version>0.1.1-SNAPSHOT</version>
vinayakb0fbb5f22010-08-19 21:44:21 +00006
7 <parent>
8 <groupId>edu.uci.ics.hyracks.examples</groupId>
9 <artifactId>tpch-example</artifactId>
10 <version>0.1.1-SNAPSHOT</version>
11 </parent>
12
vinayakbc8d86de2010-08-12 22:25:49 +000013 <dependencies>
14 <dependency>
15 <groupId>edu.uci.ics.hyracks</groupId>
16 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb97785f42010-08-19 20:09:01 +000017 <version>0.1.1-SNAPSHOT</version>
vinayakbc8d86de2010-08-12 22:25:49 +000018 <scope>compile</scope>
19 </dependency>
20 <dependency>
21 <groupId>edu.uci.ics.hyracks.examples.tpch</groupId>
22 <artifactId>tpchhelper</artifactId>
vinayakb97785f42010-08-19 20:09:01 +000023 <version>0.1.1-SNAPSHOT</version>
vinayakbc8d86de2010-08-12 22:25:49 +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.tpch.client.Main</mainClass>
48 <name>tpchclient</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 </plugins>
62 </build>
63</project>