blob: 184005ae85e094a05f29fc95ab7332daba1ee192 [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>
vinayakb88b8d772011-09-01 04:29:18 +00005 <version>0.1.7.1</version>
vinayakb0fbb5f22010-08-19 21:44:21 +00006
7 <parent>
8 <groupId>edu.uci.ics.hyracks.examples</groupId>
9 <artifactId>tpch-example</artifactId>
vinayakb88b8d772011-09-01 04:29:18 +000010 <version>0.1.7.1</version>
vinayakb0fbb5f22010-08-19 21:44:21 +000011 </parent>
12
vinayakbc8d86de2010-08-12 22:25:49 +000013 <dependencies>
14 <dependency>
15 <groupId>edu.uci.ics.hyracks</groupId>
16 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb88b8d772011-09-01 04:29:18 +000017 <version>0.1.7.1</version>
vinayakbc8d86de2010-08-12 22:25:49 +000018 <scope>compile</scope>
19 </dependency>
vinayakbc8d86de2010-08-12 22:25:49 +000020 </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>