blob: e8a2a0a234a0ba100bd6cffad32d14026a00c4ef [file] [log] [blame]
alexander.behm34464ec2010-10-06 03:32:13 +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>
vinayakbcf059122010-12-21 19:57:55 +00003 <groupId>edu.uci.ics.hyracks.examples.btree</groupId>
alexander.behm34464ec2010-10-06 03:32:13 +00004 <artifactId>btreeclient</artifactId>
alexander.behm34464ec2010-10-06 03:32:13 +00005 <parent>
6 <groupId>edu.uci.ics.hyracks.examples</groupId>
7 <artifactId>btree-example</artifactId>
zheilbrone74da942012-04-05 21:43:52 +00008 <version>0.2.1-SNAPSHOT</version>
alexander.behm34464ec2010-10-06 03:32:13 +00009 </parent>
10
11 <dependencies>
12 <dependency>
13 <groupId>edu.uci.ics.hyracks</groupId>
14 <artifactId>hyracks-dataflow-std</artifactId>
zheilbrone74da942012-04-05 21:43:52 +000015 <version>0.2.1-SNAPSHOT</version>
alexander.behm34464ec2010-10-06 03:32:13 +000016 <scope>compile</scope>
17 </dependency>
18 <dependency>
19 <groupId>edu.uci.ics.hyracks</groupId>
20 <artifactId>hyracks-storage-am-btree</artifactId>
zheilbrone74da942012-04-05 21:43:52 +000021 <version>0.2.1-SNAPSHOT</version>
alexander.behm34464ec2010-10-06 03:32:13 +000022 <scope>compile</scope>
23 </dependency>
24 <dependency>
25 <groupId>edu.uci.ics.hyracks.examples.btree</groupId>
26 <artifactId>btreehelper</artifactId>
zheilbrone74da942012-04-05 21:43:52 +000027 <version>0.2.1-SNAPSHOT</version>
alexander.behm34464ec2010-10-06 03:32:13 +000028 <type>jar</type>
29 <scope>compile</scope>
30 </dependency>
alexander.behm34464ec2010-10-06 03:32:13 +000031 </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>