blob: 4c36a7f3cbd7bb0c7769112105167ce9fad09a5b [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>
Ian Maxone915e8c2015-07-01 17:03:31 -070022 <groupId>org.apache.hyracks.examples.btree</groupId>
vinayakb0c860392012-10-06 18:47:20 +000023 <artifactId>btreeclient</artifactId>
buyingyi8d79d162012-10-22 23:04:47 +000024 <name>btreeclient</name>
vinayakb0c860392012-10-06 18:47:20 +000025 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070026 <groupId>org.apache.hyracks.examples</groupId>
vinayakb0c860392012-10-06 18:47:20 +000027 <artifactId>btree-example</artifactId>
Ian Maxonc95de7a2020-08-07 11:58:39 -070028 <version>0.3.6-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000029 </parent>
30
Ian Maxon9e37c962015-11-25 07:38:37 -080031 <properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070032 <root.dir>${basedir}/../../../..</root.dir>
Ian Maxon9e37c962015-11-25 07:38:37 -080033 </properties>
34
vinayakb0c860392012-10-06 18:47:20 +000035 <dependencies>
Michael Blowb4c1fb02016-05-09 15:41:00 -070036 <dependency>
37 <groupId>org.apache.hyracks</groupId>
38 <artifactId>hyracks-dataflow-std</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040039 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070040 </dependency>
41 <dependency>
42 <groupId>org.apache.hyracks</groupId>
43 <artifactId>hyracks-storage-am-btree</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040044 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070045 </dependency>
46 <dependency>
47 <groupId>org.apache.hyracks.examples.btree</groupId>
48 <artifactId>btreehelper</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040049 <version>${project.version}</version>
Michael Blowba358122016-10-13 19:56:03 -040050 </dependency>
51 <dependency>
52 <groupId>org.apache.hyracks</groupId>
53 <artifactId>hyracks-dataflow-common</artifactId>
54 <version>${project.version}</version>
55 </dependency>
56 <dependency>
57 <groupId>org.apache.hyracks</groupId>
58 <artifactId>hyracks-storage-am-common</artifactId>
59 <version>${project.version}</version>
60 </dependency>
61 <dependency>
62 <groupId>args4j</groupId>
63 <artifactId>args4j</artifactId>
Michael Blowba358122016-10-13 19:56:03 -040064 </dependency>
65 <dependency>
66 <groupId>org.apache.hyracks</groupId>
67 <artifactId>hyracks-api</artifactId>
68 <version>${project.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>org.apache.hyracks</groupId>
72 <artifactId>hyracks-storage-common</artifactId>
73 <version>${project.version}</version>
74 </dependency>
75 <dependency>
76 <groupId>org.apache.hyracks</groupId>
77 <artifactId>hyracks-data-std</artifactId>
78 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070079 </dependency>
Murtadha Hubailda7e8a12018-12-04 02:29:11 +030080 <dependency>
81 <groupId>org.apache.hyracks</groupId>
82 <artifactId>hyracks-ipc</artifactId>
83 <version>${project.version}</version>
84 </dependency>
vinayakb0c860392012-10-06 18:47:20 +000085 </dependencies>
86 <build>
87 <plugins>
88 <plugin>
vinayakb0c860392012-10-06 18:47:20 +000089 <groupId>org.codehaus.mojo</groupId>
90 <artifactId>appassembler-maven-plugin</artifactId>
vinayakb0c860392012-10-06 18:47:20 +000091 <executions>
92 <execution>
93 <configuration>
94 <programs>
95 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070096 <mainClass>org.apache.hyracks.examples.btree.client.BTreeBulkLoadExample</mainClass>
vinayakb0c860392012-10-06 18:47:20 +000097 <name>btreebulkload</name>
98 </program>
99 </programs>
100 <repositoryLayout>flat</repositoryLayout>
101 <repositoryName>lib</repositoryName>
102 </configuration>
103 <phase>package</phase>
104 <goals>
105 <goal>assemble</goal>
106 </goals>
107 </execution>
108 </executions>
109 </plugin>
110 <plugin>
Ian Maxonbb5dc4c2016-02-02 18:16:30 -0800111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-deploy-plugin</artifactId>
113 <configuration>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700114 <skip>true</skip>
Ian Maxonbb5dc4c2016-02-02 18:16:30 -0800115 </configuration>
vinayakb0c860392012-10-06 18:47:20 +0000116 </plugin>
117 </plugins>
118 </build>
119</project>