blob: 9885764acdac2e5f849732c9a4c23f599c4f8644 [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
vinayakb0c860392012-10-06 18:47:20 +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>
vinayakb0c860392012-10-06 18:47:20 +000022 <artifactId>tpchclient</artifactId>
buyingyi8d79d162012-10-22 23:04:47 +000023 <name>tpchclient</name>
vinayakb0c860392012-10-06 18:47:20 +000024 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070025 <groupId>org.apache.hyracks</groupId>
vinayakb0c860392012-10-06 18:47:20 +000026 <artifactId>tpch-example</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -080027 <version>0.2.18-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000028 </parent>
29
Michael Blowb4c1fb02016-05-09 15:41:00 -070030 <properties>
31 <root.dir>${basedir}/../../../../..</root.dir>
32 </properties>
33 <dependencies>
34 <dependency>
35 <groupId>org.apache.hyracks</groupId>
36 <artifactId>hyracks-dataflow-std</artifactId>
37 <version>0.2.18-SNAPSHOT</version>
38 <scope>compile</scope>
39 </dependency>
40 <dependency>
41 <groupId>org.apache.hyracks</groupId>
42 <artifactId>hyracks-data-std</artifactId>
43 <version>0.2.18-SNAPSHOT</version>
44 </dependency>
45 </dependencies>
46 <build>
47 <plugins>
48 <plugin>
49 <groupId>org.codehaus.mojo</groupId>
50 <artifactId>appassembler-maven-plugin</artifactId>
51 <version>1.3</version>
52 <executions>
53 <execution>
54 <id>sort</id>
55 <configuration>
56 <programs>
57 <program>
58 <mainClass>org.apache.hyracks.examples.tpch.client.Sort</mainClass>
59 <name>sort</name>
60 </program>
61 </programs>
62 <repositoryLayout>flat</repositoryLayout>
63 <repositoryName>lib</repositoryName>
64 </configuration>
65 <phase>package</phase>
66 <goals>
67 <goal>assemble</goal>
68 </goals>
69 </execution>
70 <execution>
71 <id>group</id>
72 <configuration>
73 <programs>
74 <program>
75 <mainClass>org.apache.hyracks.examples.tpch.client.Groupby</mainClass>
76 <name>group</name>
77 </program>
78 </programs>
79 <repositoryLayout>flat</repositoryLayout>
80 <repositoryName>lib</repositoryName>
81 </configuration>
82 <phase>package</phase>
83 <goals>
84 <goal>assemble</goal>
85 </goals>
86 </execution>
87 <execution>
88 <id>join</id>
89 <configuration>
90 <programs>
91 <program>
92 <mainClass>org.apache.hyracks.examples.tpch.client.Join</mainClass>
93 <name>join</name>
94 </program>
95 </programs>
96 <repositoryLayout>flat</repositoryLayout>
97 <repositoryName>lib</repositoryName>
98 </configuration>
99 <phase>package</phase>
100 <goals>
101 <goal>assemble</goal>
102 </goals>
103 </execution>
104 </executions>
105 </plugin>
106 <plugin>
107 <groupId>org.apache.maven.plugins</groupId>
108 <artifactId>maven-deploy-plugin</artifactId>
109 <configuration>
110 <skip>true</skip>
111 </configuration>
112 </plugin>
113 </plugins>
114 </build>
vinayakb0c860392012-10-06 18:47:20 +0000115</project>