Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ! Copyright 2009-2013 by The Regents of the University of California |
| 3 | ! Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | ! you may not use this file except in compliance with the License. |
| 5 | ! you may obtain a copy of the License from |
| 6 | ! |
| 7 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | ! |
| 9 | ! Unless required by applicable law or agreed to in writing, software |
| 10 | ! distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | ! See the License for the specific language governing permissions and |
| 13 | ! limitations under the License. |
| 14 | !--> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 15 | <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"> |
| 16 | <modelVersion>4.0.0</modelVersion> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame^] | 17 | <groupId>org.apache.hyracks.examples.tpch</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 18 | <artifactId>tpchserver</artifactId> |
| 19 | <name>tpchserver</name> |
| 20 | |
| 21 | <parent> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame^] | 22 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 23 | <artifactId>tpch-example</artifactId> |
Ian Maxon | 97acfe5 | 2015-02-17 20:47:20 -0800 | [diff] [blame] | 24 | <version>0.2.16-SNAPSHOT</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | |
| 27 | <build> |
| 28 | <plugins> |
| 29 | <plugin> |
| 30 | <groupId>org.codehaus.mojo</groupId> |
| 31 | <artifactId>appassembler-maven-plugin</artifactId> |
| 32 | <version>1.3</version> |
| 33 | <executions> |
| 34 | <execution> |
| 35 | <configuration> |
| 36 | <programs> |
| 37 | <program> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame^] | 38 | <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 39 | <name>hyrackscc</name> |
| 40 | </program> |
| 41 | <program> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame^] | 42 | <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 43 | <name>hyracksnc</name> |
| 44 | </program> |
| 45 | </programs> |
| 46 | <repositoryLayout>flat</repositoryLayout> |
| 47 | <repositoryName>lib</repositoryName> |
| 48 | </configuration> |
| 49 | <phase>package</phase> |
| 50 | <goals> |
| 51 | <goal>assemble</goal> |
| 52 | </goals> |
| 53 | </execution> |
| 54 | </executions> |
| 55 | </plugin> |
| 56 | <plugin> |
| 57 | <artifactId>maven-assembly-plugin</artifactId> |
| 58 | <version>2.2-beta-5</version> |
| 59 | <executions> |
| 60 | <execution> |
| 61 | <configuration> |
| 62 | <descriptors> |
| 63 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 64 | </descriptors> |
| 65 | </configuration> |
| 66 | <phase>package</phase> |
| 67 | <goals> |
| 68 | <goal>attached</goal> |
| 69 | </goals> |
| 70 | </execution> |
| 71 | </executions> |
| 72 | </plugin> |
| 73 | </plugins> |
| 74 | </build> |
| 75 | <dependencies> |
| 76 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame^] | 77 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 78 | <artifactId>hyracks-dataflow-std</artifactId> |
Ian Maxon | 97acfe5 | 2015-02-17 20:47:20 -0800 | [diff] [blame] | 79 | <version>0.2.16-SNAPSHOT</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 80 | <scope>compile</scope> |
| 81 | </dependency> |
| 82 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame^] | 83 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 84 | <artifactId>hyracks-data-std</artifactId> |
Ian Maxon | 97acfe5 | 2015-02-17 20:47:20 -0800 | [diff] [blame] | 85 | <version>0.2.16-SNAPSHOT</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 86 | </dependency> |
| 87 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame^] | 88 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 89 | <artifactId>hyracks-control-cc</artifactId> |
Ian Maxon | 97acfe5 | 2015-02-17 20:47:20 -0800 | [diff] [blame] | 90 | <version>0.2.16-SNAPSHOT</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 91 | <type>jar</type> |
| 92 | <scope>compile</scope> |
| 93 | </dependency> |
| 94 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame^] | 95 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 96 | <artifactId>hyracks-control-nc</artifactId> |
Ian Maxon | 97acfe5 | 2015-02-17 20:47:20 -0800 | [diff] [blame] | 97 | <version>0.2.16-SNAPSHOT</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 98 | <type>jar</type> |
| 99 | <scope>compile</scope> |
| 100 | </dependency> |
| 101 | </dependencies> |
| 102 | </project> |