blob: ba296ac96053325a28df91a767c6dd0d0046591c [file] [log] [blame]
vinayakb0c860392012-10-06 18:47:20 +00001<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">
2 <modelVersion>4.0.0</modelVersion>
3 <groupId>edu.uci.ics.hyracks.examples.btree</groupId>
4 <artifactId>btreeclient</artifactId>
buyingyi8d79d162012-10-22 23:04:47 +00005 <name>btreeclient</name>
vinayakb0c860392012-10-06 18:47:20 +00006 <parent>
7 <groupId>edu.uci.ics.hyracks.examples</groupId>
8 <artifactId>btree-example</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +00009 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000010 </parent>
11
12 <dependencies>
13 <dependency>
14 <groupId>edu.uci.ics.hyracks</groupId>
15 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000016 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000017 <scope>compile</scope>
18 </dependency>
19 <dependency>
20 <groupId>edu.uci.ics.hyracks</groupId>
21 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000022 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000023 <scope>compile</scope>
24 </dependency>
25 <dependency>
26 <groupId>edu.uci.ics.hyracks.examples.btree</groupId>
27 <artifactId>btreehelper</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000028 <version>0.2.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000029 <type>jar</type>
30 <scope>compile</scope>
31 </dependency>
32 </dependencies>
33 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-compiler-plugin</artifactId>
38 <version>2.0.2</version>
39 <configuration>
40 <source>1.6</source>
41 <target>1.6</target>
42 </configuration>
43 </plugin>
44 <plugin>
45 <groupId>org.codehaus.mojo</groupId>
46 <artifactId>appassembler-maven-plugin</artifactId>
vinayakba8d545c2013-02-05 05:54:47 +000047 <version>1.3</version>
vinayakb0c860392012-10-06 18:47:20 +000048 <executions>
49 <execution>
50 <configuration>
51 <programs>
52 <program>
53 <mainClass>edu.uci.ics.hyracks.examples.btree.client.BTreeBulkLoadExample</mainClass>
54 <name>btreebulkload</name>
55 </program>
56 </programs>
57 <repositoryLayout>flat</repositoryLayout>
58 <repositoryName>lib</repositoryName>
59 </configuration>
60 <phase>package</phase>
61 <goals>
62 <goal>assemble</goal>
63 </goals>
64 </execution>
65 </executions>
66 </plugin>
67 <plugin>
68 <artifactId>maven-assembly-plugin</artifactId>
69 <version>2.2-beta-5</version>
70 <executions>
71 <execution>
72 <configuration>
73 <descriptors>
74 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
75 </descriptors>
76 </configuration>
77 <phase>package</phase>
78 <goals>
79 <goal>attached</goal>
80 </goals>
81 </execution>
82 </executions>
83 </plugin>
84 </plugins>
85 </build>
86</project>