blob: 24e99d8986d6cb404c6f62bffb0f06e80c8e6e62 [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>
vinayakbc8d86de2010-08-12 22:25:49 +00006 <dependencies>
7 <dependency>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb97785f42010-08-19 20:09:01 +000010 <version>0.1.1-SNAPSHOT</version>
vinayakbc8d86de2010-08-12 22:25:49 +000011 <scope>compile</scope>
12 </dependency>
13 <dependency>
14 <groupId>edu.uci.ics.hyracks.examples.tpch</groupId>
15 <artifactId>tpchhelper</artifactId>
vinayakb97785f42010-08-19 20:09:01 +000016 <version>0.1.1-SNAPSHOT</version>
vinayakbc8d86de2010-08-12 22:25:49 +000017 <type>jar</type>
18 <scope>compile</scope>
19 </dependency>
20 </dependencies>
21 <build>
22 <plugins>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-compiler-plugin</artifactId>
26 <version>2.0.2</version>
27 <configuration>
28 <source>1.6</source>
29 <target>1.6</target>
30 </configuration>
31 </plugin>
32 <plugin>
33 <groupId>org.codehaus.mojo</groupId>
34 <artifactId>appassembler-maven-plugin</artifactId>
35 <executions>
36 <execution>
37 <configuration>
38 <programs>
39 <program>
40 <mainClass>edu.uci.ics.hyracks.examples.tpch.client.Main</mainClass>
41 <name>tpchclient</name>
42 </program>
43 </programs>
44 <repositoryLayout>flat</repositoryLayout>
45 <repositoryName>lib</repositoryName>
46 </configuration>
47 <phase>package</phase>
48 <goals>
49 <goal>assemble</goal>
50 </goals>
51 </execution>
52 </executions>
53 </plugin>
54 </plugins>
55 </build>
56</project>