vinayakb | 0c86039 | 2012-10-06 18:47:20 +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> |
buyingyi | 8d79d16 | 2012-10-22 23:04:47 +0000 | [diff] [blame] | 5 | <name>tpchclient</name> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 6 | <parent> |
| 7 | <groupId>edu.uci.ics.hyracks.examples</groupId> |
| 8 | <artifactId>tpch-example</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 9 | <version>0.2.3-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 10 | </parent> |
| 11 | |
| 12 | <dependencies> |
| 13 | <dependency> |
| 14 | <groupId>edu.uci.ics.hyracks</groupId> |
| 15 | <artifactId>hyracks-dataflow-std</artifactId> |
vinayakb | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 16 | <version>0.2.3-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +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 | 70c821c | 2012-10-29 15:46:12 +0000 | [diff] [blame] | 22 | <version>0.2.3-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +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> |
madhusudancs@gmail.com | 8c6dcbc | 2013-03-06 01:19:58 +0000 | [diff] [blame] | 32 | <source>1.7</source> |
| 33 | <target>1.7</target> |
buyingyi | bc168c8 | 2013-03-02 08:38:44 +0000 | [diff] [blame] | 34 | <fork>true</fork> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 35 | </configuration> |
| 36 | </plugin> |
| 37 | <plugin> |
| 38 | <groupId>org.codehaus.mojo</groupId> |
| 39 | <artifactId>appassembler-maven-plugin</artifactId> |
vinayakb | a8d545c | 2013-02-05 05:54:47 +0000 | [diff] [blame] | 40 | <version>1.3</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 41 | <executions> |
| 42 | <execution> |
| 43 | <configuration> |
| 44 | <programs> |
| 45 | <program> |
| 46 | <mainClass>edu.uci.ics.hyracks.examples.tpch.client.Main</mainClass> |
| 47 | <name>tpchclient</name> |
| 48 | </program> |
| 49 | </programs> |
| 50 | <repositoryLayout>flat</repositoryLayout> |
| 51 | <repositoryName>lib</repositoryName> |
| 52 | </configuration> |
| 53 | <phase>package</phase> |
| 54 | <goals> |
| 55 | <goal>assemble</goal> |
| 56 | </goals> |
| 57 | </execution> |
| 58 | </executions> |
| 59 | </plugin> |
| 60 | </plugins> |
| 61 | </build> |
| 62 | </project> |