vinayakb | 0c86039 | 2012-10-06 18:47:20 +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.btree</groupId> |
| 4 | <artifactId>btreeclient</artifactId> |
buyingyi | 8d79d16 | 2012-10-22 23:04:47 +0000 | [diff] [blame] | 5 | <name>btreeclient</name> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 6 | <parent> |
| 7 | <groupId>edu.uci.ics.hyracks.examples</groupId> |
| 8 | <artifactId>btree-example</artifactId> |
vinayakb | 4fa2343 | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 9 | <version>0.2.4</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 10 | </parent> |
| 11 | |
| 12 | <dependencies> |
| 13 | <dependency> |
| 14 | <groupId>edu.uci.ics.hyracks</groupId> |
| 15 | <artifactId>hyracks-dataflow-std</artifactId> |
vinayakb | 4fa2343 | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 16 | <version>0.2.4</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 17 | <scope>compile</scope> |
| 18 | </dependency> |
| 19 | <dependency> |
| 20 | <groupId>edu.uci.ics.hyracks</groupId> |
| 21 | <artifactId>hyracks-storage-am-btree</artifactId> |
vinayakb | 4fa2343 | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 22 | <version>0.2.4</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 23 | <scope>compile</scope> |
| 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>edu.uci.ics.hyracks.examples.btree</groupId> |
| 27 | <artifactId>btreehelper</artifactId> |
vinayakb | 4fa2343 | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 28 | <version>0.2.4</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 29 | <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> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 40 | <source>1.7</source> |
| 41 | <target>1.7</target> |
| 42 | <fork>true</fork> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 43 | </configuration> |
| 44 | </plugin> |
| 45 | <plugin> |
| 46 | <groupId>org.codehaus.mojo</groupId> |
| 47 | <artifactId>appassembler-maven-plugin</artifactId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 48 | <version>1.3</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 49 | <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> |