vinayakb | c8d86de | 2010-08-12 22:25:49 +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> |
vinayakb | 97785f4 | 2010-08-19 20:09:01 +0000 | [diff] [blame^] | 5 | <version>0.1.1-SNAPSHOT</version> |
vinayakb | c8d86de | 2010-08-12 22:25:49 +0000 | [diff] [blame] | 6 | <dependencies> |
| 7 | <dependency> |
| 8 | <groupId>edu.uci.ics.hyracks</groupId> |
| 9 | <artifactId>hyracks-dataflow-std</artifactId> |
vinayakb | 97785f4 | 2010-08-19 20:09:01 +0000 | [diff] [blame^] | 10 | <version>0.1.1-SNAPSHOT</version> |
vinayakb | c8d86de | 2010-08-12 22:25:49 +0000 | [diff] [blame] | 11 | <scope>compile</scope> |
| 12 | </dependency> |
| 13 | <dependency> |
| 14 | <groupId>edu.uci.ics.hyracks.examples.tpch</groupId> |
| 15 | <artifactId>tpchhelper</artifactId> |
vinayakb | 97785f4 | 2010-08-19 20:09:01 +0000 | [diff] [blame^] | 16 | <version>0.1.1-SNAPSHOT</version> |
vinayakb | c8d86de | 2010-08-12 22:25:49 +0000 | [diff] [blame] | 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> |