blob: 82919cad333c16c3418f72e3a33b13bbdc8c7c01 [file] [log] [blame]
vinayakb59d505d2012-10-29 10:38:02 +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>
5 <name>btreeclient</name>
6 <parent>
7 <groupId>edu.uci.ics.hyracks.examples</groupId>
8 <artifactId>btree-example</artifactId>
vinayakb61baa4c2012-10-29 13:50:57 +00009 <version>0.2.3-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000010 </parent>
11
12 <dependencies>
13 <dependency>
14 <groupId>edu.uci.ics.hyracks</groupId>
15 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb61baa4c2012-10-29 13:50:57 +000016 <version>0.2.3-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000017 <scope>compile</scope>
18 </dependency>
19 <dependency>
20 <groupId>edu.uci.ics.hyracks</groupId>
21 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb61baa4c2012-10-29 13:50:57 +000022 <version>0.2.3-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +000023 <scope>compile</scope>
24 </dependency>
25 <dependency>
26 <groupId>edu.uci.ics.hyracks.examples.btree</groupId>
27 <artifactId>btreehelper</artifactId>
vinayakb61baa4c2012-10-29 13:50:57 +000028 <version>0.2.3-SNAPSHOT</version>
vinayakb59d505d2012-10-29 10:38:02 +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>
47 <executions>
48 <execution>
49 <configuration>
50 <programs>
51 <program>
52 <mainClass>edu.uci.ics.hyracks.examples.btree.client.BTreeBulkLoadExample</mainClass>
53 <name>btreebulkload</name>
54 </program>
55 </programs>
56 <repositoryLayout>flat</repositoryLayout>
57 <repositoryName>lib</repositoryName>
58 </configuration>
59 <phase>package</phase>
60 <goals>
61 <goal>assemble</goal>
62 </goals>
63 </execution>
64 </executions>
65 </plugin>
66 <plugin>
67 <artifactId>maven-assembly-plugin</artifactId>
68 <version>2.2-beta-5</version>
69 <executions>
70 <execution>
71 <configuration>
72 <descriptors>
73 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
74 </descriptors>
75 </configuration>
76 <phase>package</phase>
77 <goals>
78 <goal>attached</goal>
79 </goals>
80 </execution>
81 </executions>
82 </plugin>
83 </plugins>
84 </build>
85</project>