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