blob: 3ef75bec06b97b18c32f4f4f640eb6a20a195b2f [file] [log] [blame]
vinayakb32c38692010-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>
vinayakb28cc83e2010-08-19 21:44:21 +00005 <parent>
6 <groupId>edu.uci.ics.hyracks.examples</groupId>
7 <artifactId>tpch-example</artifactId>
zheilbrone74da942012-04-05 21:43:52 +00008 <version>0.2.1-SNAPSHOT</version>
vinayakb28cc83e2010-08-19 21:44:21 +00009 </parent>
10
vinayakb32c38692010-08-12 22:25:49 +000011 <dependencies>
12 <dependency>
13 <groupId>edu.uci.ics.hyracks</groupId>
14 <artifactId>hyracks-dataflow-std</artifactId>
zheilbrone74da942012-04-05 21:43:52 +000015 <version>0.2.1-SNAPSHOT</version>
vinayakb32c38692010-08-12 22:25:49 +000016 <scope>compile</scope>
17 </dependency>
vinayakb8ec0f612011-12-08 01:00:37 +000018 <dependency>
19 <groupId>edu.uci.ics.hyracks</groupId>
20 <artifactId>hyracks-data-std</artifactId>
zheilbrone74da942012-04-05 21:43:52 +000021 <version>0.2.1-SNAPSHOT</version>
vinayakb8ec0f612011-12-08 01:00:37 +000022 </dependency>
vinayakb32c38692010-08-12 22:25:49 +000023 </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>