blob: 8f06b484014ca50b558a3811fe97bdffb4f7d35f [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>
zheilbron7a4ac202012-08-20 20:39:59 +000031 <dependency>
32 <groupId>edu.uci.ics.hyracks</groupId>
33 <artifactId>hyracks-test-support</artifactId>
34 <version>0.2.1-SNAPSHOT</version>
35 <scope>compile</scope>
36 </dependency>
alexander.behm34464ec2010-10-06 03:32:13 +000037 </dependencies>
38 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-compiler-plugin</artifactId>
43 <version>2.0.2</version>
44 <configuration>
45 <source>1.6</source>
46 <target>1.6</target>
47 </configuration>
48 </plugin>
49 <plugin>
50 <groupId>org.codehaus.mojo</groupId>
51 <artifactId>appassembler-maven-plugin</artifactId>
52 <executions>
53 <execution>
54 <configuration>
55 <programs>
56 <program>
57 <mainClass>edu.uci.ics.hyracks.examples.btree.client.BTreeBulkLoadExample</mainClass>
58 <name>btreebulkload</name>
59 </program>
60 </programs>
61 <repositoryLayout>flat</repositoryLayout>
62 <repositoryName>lib</repositoryName>
63 </configuration>
64 <phase>package</phase>
65 <goals>
66 <goal>assemble</goal>
67 </goals>
68 </execution>
69 </executions>
70 </plugin>
71 <plugin>
72 <artifactId>maven-assembly-plugin</artifactId>
73 <version>2.2-beta-5</version>
74 <executions>
75 <execution>
76 <configuration>
77 <descriptors>
78 <descriptor>src/main/assembly/binary-assembly.xml</descriptor>
79 </descriptors>
80 </configuration>
81 <phase>package</phase>
82 <goals>
83 <goal>attached</goal>
84 </goals>
85 </execution>
86 </executions>
87 </plugin>
88 </plugins>
89 </build>
90</project>