blob: d34e3a5f8ba31671d3aa95a359047d39c81cc933 [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>
vinayakba8a02612013-03-25 03:17:01 +00009 <version>0.2.3</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>
vinayakba8a02612013-03-25 03:17:01 +000016 <version>0.2.3</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>
vinayakba8a02612013-03-25 03:17:01 +000022 <version>0.2.3</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>
vinayakba8a02612013-03-25 03:17:01 +000028 <version>0.2.3</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>
buyingyi5df938f2013-03-24 07:20:08 +000040 <source>1.7</source>
41 <target>1.7</target>
42 <fork>true</fork>
vinayakb59d505d2012-10-29 10:38:02 +000043 </configuration>
44 </plugin>
45 <plugin>
46 <groupId>org.codehaus.mojo</groupId>
47 <artifactId>appassembler-maven-plugin</artifactId>
buyingyi5df938f2013-03-24 07:20:08 +000048 <version>1.3</version>
vinayakb59d505d2012-10-29 10:38:02 +000049 <executions>
50 <execution>
51 <configuration>
52 <programs>
53 <program>
54 <mainClass>edu.uci.ics.hyracks.examples.btree.client.BTreeBulkLoadExample</mainClass>
55 <name>btreebulkload</name>
56 </program>
57 </programs>
58 <repositoryLayout>flat</repositoryLayout>
59 <repositoryName>lib</repositoryName>
60 </configuration>
61 <phase>package</phase>
62 <goals>
63 <goal>assemble</goal>
64 </goals>
65 </execution>
66 </executions>
67 </plugin>
68 <plugin>
69 <artifactId>maven-assembly-plugin</artifactId>
70 <version>2.2-beta-5</version>
71 <executions>
72 <execution>
73 <configuration>
74 <descriptors>
75 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
76 </descriptors>
77 </configuration>
78 <phase>package</phase>
79 <goals>
80 <goal>attached</goal>
81 </goals>
82 </execution>
83 </executions>
84 </plugin>
85 </plugins>
86 </build>
87</project>