blob: 317030629eae4b1ad12982e2ecc95d3df5b52598 [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.tpch</groupId>
4 <artifactId>tpchclient</artifactId>
5 <name>tpchclient</name>
6 <parent>
7 <groupId>edu.uci.ics.hyracks.examples</groupId>
8 <artifactId>tpch-example</artifactId>
vinayakb575edbe2012-10-29 15:46:12 +00009 <version>0.2.3-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000010 </parent>
11
12 <dependencies>
13 <dependency>
14 <groupId>edu.uci.ics.hyracks</groupId>
15 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb575edbe2012-10-29 15:46:12 +000016 <version>0.2.3-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000017 <scope>compile</scope>
18 </dependency>
19 <dependency>
20 <groupId>edu.uci.ics.hyracks</groupId>
21 <artifactId>hyracks-data-std</artifactId>
vinayakb575edbe2012-10-29 15:46:12 +000022 <version>0.2.3-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000023 </dependency>
24 </dependencies>
25 <build>
26 <plugins>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-compiler-plugin</artifactId>
30 <version>2.0.2</version>
31 <configuration>
32 <source>1.6</source>
33 <target>1.6</target>
34 </configuration>
35 </plugin>
36 <plugin>
37 <groupId>org.codehaus.mojo</groupId>
38 <artifactId>appassembler-maven-plugin</artifactId>
39 <executions>
40 <execution>
41 <configuration>
42 <programs>
43 <program>
44 <mainClass>edu.uci.ics.hyracks.examples.tpch.client.Main</mainClass>
45 <name>tpchclient</name>
46 </program>
47 </programs>
48 <repositoryLayout>flat</repositoryLayout>
49 <repositoryName>lib</repositoryName>
50 </configuration>
51 <phase>package</phase>
52 <goals>
53 <goal>assemble</goal>
54 </goals>
55 </execution>
56 </executions>
57 </plugin>
58 </plugins>
59 </build>
60</project>