blob: ae1eb66773f2e114d9c9ff0a8fad5f8f13cc6826 [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 Maxond4daeb42015-09-15 14:31:32 -070028 <version>0.2.17-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000029 </parent>
30
Ian Maxon9e37c962015-11-25 07:38:37 -080031 <properties>
32 <root.dir>${basedir}/../../../..</root.dir>
33 </properties>
34
vinayakb0c860392012-10-06 18:47:20 +000035 <dependencies>
36 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070037 <groupId>org.apache.hyracks</groupId>
vinayakb0c860392012-10-06 18:47:20 +000038 <artifactId>hyracks-dataflow-std</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -070039 <version>0.2.17-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000040 <scope>compile</scope>
41 </dependency>
42 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070043 <groupId>org.apache.hyracks</groupId>
vinayakb0c860392012-10-06 18:47:20 +000044 <artifactId>hyracks-storage-am-btree</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -070045 <version>0.2.17-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000046 <scope>compile</scope>
47 </dependency>
48 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070049 <groupId>org.apache.hyracks.examples.btree</groupId>
vinayakb0c860392012-10-06 18:47:20 +000050 <artifactId>btreehelper</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -070051 <version>0.2.17-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000052 <type>jar</type>
53 <scope>compile</scope>
54 </dependency>
55 </dependencies>
56 <build>
57 <plugins>
58 <plugin>
59 <groupId>org.apache.maven.plugins</groupId>
60 <artifactId>maven-compiler-plugin</artifactId>
61 <version>2.0.2</version>
62 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000063 <source>1.7</source>
64 <target>1.7</target>
65 <fork>true</fork>
vinayakb0c860392012-10-06 18:47:20 +000066 </configuration>
67 </plugin>
68 <plugin>
69 <groupId>org.codehaus.mojo</groupId>
70 <artifactId>appassembler-maven-plugin</artifactId>
buyingyi55df5212013-03-24 07:20:08 +000071 <version>1.3</version>
vinayakb0c860392012-10-06 18:47:20 +000072 <executions>
73 <execution>
74 <configuration>
75 <programs>
76 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070077 <mainClass>org.apache.hyracks.examples.btree.client.BTreeBulkLoadExample</mainClass>
vinayakb0c860392012-10-06 18:47:20 +000078 <name>btreebulkload</name>
79 </program>
80 </programs>
81 <repositoryLayout>flat</repositoryLayout>
82 <repositoryName>lib</repositoryName>
83 </configuration>
84 <phase>package</phase>
85 <goals>
86 <goal>assemble</goal>
87 </goals>
88 </execution>
89 </executions>
90 </plugin>
91 <plugin>
92 <artifactId>maven-assembly-plugin</artifactId>
93 <version>2.2-beta-5</version>
94 <executions>
95 <execution>
96 <configuration>
97 <descriptors>
98 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
99 </descriptors>
100 </configuration>
101 <phase>package</phase>
102 <goals>
103 <goal>attached</goal>
104 </goals>
105 </execution>
106 </executions>
107 </plugin>
108 </plugins>
109 </build>
110</project>