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