blob: cb1d04a7d482c016a48a7db6acd2698c3649a215 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
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 !-->
vinayakb0c860392012-10-06 18:47:20 +000015<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>
17 <groupId>edu.uci.ics.hyracks.examples.btree</groupId>
18 <artifactId>btreeclient</artifactId>
buyingyi8d79d162012-10-22 23:04:47 +000019 <name>btreeclient</name>
vinayakb0c860392012-10-06 18:47:20 +000020 <parent>
21 <groupId>edu.uci.ics.hyracks.examples</groupId>
22 <artifactId>btree-example</artifactId>
Ian Maxondb37e072014-11-04 15:53:35 -080023 <version>0.2.14</version>
vinayakb0c860392012-10-06 18:47:20 +000024 </parent>
25
26 <dependencies>
27 <dependency>
28 <groupId>edu.uci.ics.hyracks</groupId>
29 <artifactId>hyracks-dataflow-std</artifactId>
Ian Maxondb37e072014-11-04 15:53:35 -080030 <version>0.2.14</version>
vinayakb0c860392012-10-06 18:47:20 +000031 <scope>compile</scope>
32 </dependency>
33 <dependency>
34 <groupId>edu.uci.ics.hyracks</groupId>
35 <artifactId>hyracks-storage-am-btree</artifactId>
Ian Maxondb37e072014-11-04 15:53:35 -080036 <version>0.2.14</version>
vinayakb0c860392012-10-06 18:47:20 +000037 <scope>compile</scope>
38 </dependency>
39 <dependency>
40 <groupId>edu.uci.ics.hyracks.examples.btree</groupId>
41 <artifactId>btreehelper</artifactId>
Ian Maxondb37e072014-11-04 15:53:35 -080042 <version>0.2.14</version>
vinayakb0c860392012-10-06 18:47:20 +000043 <type>jar</type>
44 <scope>compile</scope>
45 </dependency>
46 </dependencies>
47 <build>
48 <plugins>
49 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-compiler-plugin</artifactId>
52 <version>2.0.2</version>
53 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000054 <source>1.7</source>
55 <target>1.7</target>
56 <fork>true</fork>
vinayakb0c860392012-10-06 18:47:20 +000057 </configuration>
58 </plugin>
59 <plugin>
60 <groupId>org.codehaus.mojo</groupId>
61 <artifactId>appassembler-maven-plugin</artifactId>
buyingyi55df5212013-03-24 07:20:08 +000062 <version>1.3</version>
vinayakb0c860392012-10-06 18:47:20 +000063 <executions>
64 <execution>
65 <configuration>
66 <programs>
67 <program>
68 <mainClass>edu.uci.ics.hyracks.examples.btree.client.BTreeBulkLoadExample</mainClass>
69 <name>btreebulkload</name>
70 </program>
71 </programs>
72 <repositoryLayout>flat</repositoryLayout>
73 <repositoryName>lib</repositoryName>
74 </configuration>
75 <phase>package</phase>
76 <goals>
77 <goal>assemble</goal>
78 </goals>
79 </execution>
80 </executions>
81 </plugin>
82 <plugin>
83 <artifactId>maven-assembly-plugin</artifactId>
84 <version>2.2-beta-5</version>
85 <executions>
86 <execution>
87 <configuration>
88 <descriptors>
89 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
90 </descriptors>
91 </configuration>
92 <phase>package</phase>
93 <goals>
94 <goal>attached</goal>
95 </goals>
96 </execution>
97 </executions>
98 </plugin>
99 </plugins>
100 </build>
101</project>