blob: 0c26b8dfd597e0eb1acf93b28b18a962b70d74e5 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
Ian Maxond8857792015-09-11 14:19:53 -07002 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
Till Westmann276bbc22013-06-05 18:56:27 -070018 !-->
Ian Maxond8857792015-09-11 14:19:53 -070019
vinayakb4df31102013-04-06 18:28:48 +000020<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">
21 <modelVersion>4.0.0</modelVersion>
Ian Maxone915e8c2015-07-01 17:03:31 -070022 <groupId>org.apache.hyracks.examples.tpch</groupId>
vinayakb4df31102013-04-06 18:28:48 +000023 <artifactId>tpchserver</artifactId>
24 <name>tpchserver</name>
25
26 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070027 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +000028 <artifactId>tpch-example</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070029 <version>0.2.16-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000030 </parent>
31
32 <build>
33 <plugins>
34 <plugin>
35 <groupId>org.codehaus.mojo</groupId>
36 <artifactId>appassembler-maven-plugin</artifactId>
37 <version>1.3</version>
38 <executions>
39 <execution>
40 <configuration>
41 <programs>
42 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070043 <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass>
vinayakb4df31102013-04-06 18:28:48 +000044 <name>hyrackscc</name>
45 </program>
46 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070047 <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass>
vinayakb4df31102013-04-06 18:28:48 +000048 <name>hyracksnc</name>
49 </program>
50 </programs>
51 <repositoryLayout>flat</repositoryLayout>
52 <repositoryName>lib</repositoryName>
53 </configuration>
54 <phase>package</phase>
55 <goals>
56 <goal>assemble</goal>
57 </goals>
58 </execution>
59 </executions>
60 </plugin>
61 <plugin>
62 <artifactId>maven-assembly-plugin</artifactId>
63 <version>2.2-beta-5</version>
64 <executions>
65 <execution>
66 <configuration>
67 <descriptors>
68 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
69 </descriptors>
70 </configuration>
71 <phase>package</phase>
72 <goals>
73 <goal>attached</goal>
74 </goals>
75 </execution>
76 </executions>
77 </plugin>
78 </plugins>
79 </build>
80 <dependencies>
81 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070082 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +000083 <artifactId>hyracks-dataflow-std</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070084 <version>0.2.16-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000085 <scope>compile</scope>
86 </dependency>
87 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070088 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +000089 <artifactId>hyracks-data-std</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070090 <version>0.2.16-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000091 </dependency>
92 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070093 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +000094 <artifactId>hyracks-control-cc</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070095 <version>0.2.16-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +000096 <type>jar</type>
97 <scope>compile</scope>
98 </dependency>
99 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700100 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +0000101 <artifactId>hyracks-control-nc</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -0700102 <version>0.2.16-SNAPSHOT</version>
vinayakb4df31102013-04-06 18:28:48 +0000103 <type>jar</type>
104 <scope>compile</scope>
105 </dependency>
106 </dependencies>
107</project>