blob: 42a11ddc23c02e8acc31a13c0ed1f71475cdbe31 [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>
5 <parent>
6 <groupId>edu.uci.ics.hyracks.examples</groupId>
7 <artifactId>btree-example</artifactId>
8 <version>0.2.2-SNAPSHOT</version>
9 </parent>
10
11 <dependencies>
12 <dependency>
13 <groupId>edu.uci.ics.hyracks</groupId>
14 <artifactId>hyracks-dataflow-std</artifactId>
15 <version>0.2.2-SNAPSHOT</version>
16 <scope>compile</scope>
17 </dependency>
18 <dependency>
19 <groupId>edu.uci.ics.hyracks</groupId>
20 <artifactId>hyracks-storage-am-btree</artifactId>
21 <version>0.2.2-SNAPSHOT</version>
22 <scope>compile</scope>
23 </dependency>
24 <dependency>
25 <groupId>edu.uci.ics.hyracks.examples.btree</groupId>
26 <artifactId>btreehelper</artifactId>
27 <version>0.2.2-SNAPSHOT</version>
28 <type>jar</type>
29 <scope>compile</scope>
30 </dependency>
31 </dependencies>
32 <build>
33 <plugins>
34 <plugin>
35 <groupId>org.apache.maven.plugins</groupId>
36 <artifactId>maven-compiler-plugin</artifactId>
37 <version>2.0.2</version>
38 <configuration>
39 <source>1.6</source>
40 <target>1.6</target>
41 </configuration>
42 </plugin>
43 <plugin>
44 <groupId>org.codehaus.mojo</groupId>
45 <artifactId>appassembler-maven-plugin</artifactId>
46 <executions>
47 <execution>
48 <configuration>
49 <programs>
50 <program>
51 <mainClass>edu.uci.ics.hyracks.examples.btree.client.BTreeBulkLoadExample</mainClass>
52 <name>btreebulkload</name>
53 </program>
54 </programs>
55 <repositoryLayout>flat</repositoryLayout>
56 <repositoryName>lib</repositoryName>
57 </configuration>
58 <phase>package</phase>
59 <goals>
60 <goal>assemble</goal>
61 </goals>
62 </execution>
63 </executions>
64 </plugin>
65 <plugin>
66 <artifactId>maven-assembly-plugin</artifactId>
67 <version>2.2-beta-5</version>
68 <executions>
69 <execution>
70 <configuration>
71 <descriptors>
72 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
73 </descriptors>
74 </configuration>
75 <phase>package</phase>
76 <goals>
77 <goal>attached</goal>
78 </goals>
79 </execution>
80 </executions>
81 </plugin>
82 </plugins>
83 </build>
84</project>