vinayakb | 4df3110 | 2013-04-06 18:28:48 +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>btreeserver</artifactId> |
vinayakb | 4fa2343 | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 5 | <version>0.2.4</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 6 | <name>btreeserver</name> |
| 7 | |
| 8 | <parent> |
| 9 | <groupId>edu.uci.ics.hyracks.examples</groupId> |
| 10 | <artifactId>btree-example</artifactId> |
vinayakb | 4fa2343 | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 11 | <version>0.2.4</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 12 | </parent> |
| 13 | |
| 14 | <build> |
| 15 | <plugins> |
| 16 | <plugin> |
| 17 | <groupId>org.codehaus.mojo</groupId> |
| 18 | <artifactId>appassembler-maven-plugin</artifactId> |
| 19 | <version>1.3</version> |
| 20 | <executions> |
| 21 | <execution> |
| 22 | <configuration> |
| 23 | <programs> |
| 24 | <program> |
| 25 | <mainClass>edu.uci.ics.hyracks.control.cc.CCDriver</mainClass> |
| 26 | <name>hyrackscc</name> |
| 27 | </program> |
| 28 | <program> |
| 29 | <mainClass>edu.uci.ics.hyracks.control.nc.NCDriver</mainClass> |
| 30 | <name>hyracksnc</name> |
| 31 | </program> |
| 32 | </programs> |
| 33 | <repositoryLayout>flat</repositoryLayout> |
| 34 | <repositoryName>lib</repositoryName> |
| 35 | </configuration> |
| 36 | <phase>package</phase> |
| 37 | <goals> |
| 38 | <goal>assemble</goal> |
| 39 | </goals> |
| 40 | </execution> |
| 41 | </executions> |
| 42 | </plugin> |
| 43 | <plugin> |
| 44 | <artifactId>maven-assembly-plugin</artifactId> |
| 45 | <version>2.2-beta-5</version> |
| 46 | <executions> |
| 47 | <execution> |
| 48 | <configuration> |
| 49 | <descriptors> |
| 50 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 51 | </descriptors> |
| 52 | </configuration> |
| 53 | <phase>package</phase> |
| 54 | <goals> |
| 55 | <goal>attached</goal> |
| 56 | </goals> |
| 57 | </execution> |
| 58 | </executions> |
| 59 | </plugin> |
| 60 | </plugins> |
| 61 | </build> |
| 62 | <dependencies> |
| 63 | <dependency> |
| 64 | <groupId>edu.uci.ics.hyracks.examples.btree</groupId> |
| 65 | <artifactId>btreehelper</artifactId> |
vinayakb | 4fa2343 | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 66 | <version>0.2.4</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 67 | <scope>compile</scope> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>edu.uci.ics.hyracks</groupId> |
| 71 | <artifactId>hyracks-control-cc</artifactId> |
vinayakb | 4fa2343 | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 72 | <version>0.2.4</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 73 | <type>jar</type> |
| 74 | <scope>compile</scope> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>edu.uci.ics.hyracks</groupId> |
| 78 | <artifactId>hyracks-control-nc</artifactId> |
vinayakb | 4fa2343 | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 79 | <version>0.2.4</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 80 | <type>jar</type> |
| 81 | <scope>compile</scope> |
| 82 | </dependency> |
| 83 | </dependencies> |
| 84 | </project> |