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