blob: 648bdcfb301276e2b57576f30ae39b146e5a1ff9 [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>
5 <version>0.0.1</version>
6 <dependencies>
7 <dependency>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <artifactId>hyracks-dataflow-std</artifactId>
10 <version>0.1.0</version>
11 <scope>compile</scope>
12 </dependency>
13 <dependency>
14 <groupId>edu.uci.ics.hyracks.examples.tpch</groupId>
15 <artifactId>tpchhelper</artifactId>
16 <version>0.0.1</version>
17 <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>