Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ! Copyright 2009-2013 by The Regents of the University of California |
| 3 | ! Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | ! you may not use this file except in compliance with the License. |
| 5 | ! you may obtain a copy of the License from |
| 6 | ! |
| 7 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | ! |
| 9 | ! Unless required by applicable law or agreed to in writing, software |
| 10 | ! distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | ! See the License for the specific language governing permissions and |
| 13 | ! limitations under the License. |
| 14 | !--> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 15 | <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"> |
| 16 | <modelVersion>4.0.0</modelVersion> |
| 17 | <groupId>edu.uci.ics.hyracks.examples.btree</groupId> |
| 18 | <artifactId>btreeserver</artifactId> |
Vinayak Borkar | 55e8f8c | 2013-06-05 23:16:43 -0700 | [diff] [blame^] | 19 | <version>0.2.6</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 20 | <name>btreeserver</name> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>edu.uci.ics.hyracks.examples</groupId> |
| 24 | <artifactId>btree-example</artifactId> |
Vinayak Borkar | 55e8f8c | 2013-06-05 23:16:43 -0700 | [diff] [blame^] | 25 | <version>0.2.6</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <build> |
| 29 | <plugins> |
| 30 | <plugin> |
| 31 | <groupId>org.codehaus.mojo</groupId> |
| 32 | <artifactId>appassembler-maven-plugin</artifactId> |
| 33 | <version>1.3</version> |
| 34 | <executions> |
| 35 | <execution> |
| 36 | <configuration> |
| 37 | <programs> |
| 38 | <program> |
| 39 | <mainClass>edu.uci.ics.hyracks.control.cc.CCDriver</mainClass> |
| 40 | <name>hyrackscc</name> |
| 41 | </program> |
| 42 | <program> |
| 43 | <mainClass>edu.uci.ics.hyracks.control.nc.NCDriver</mainClass> |
| 44 | <name>hyracksnc</name> |
| 45 | </program> |
| 46 | </programs> |
| 47 | <repositoryLayout>flat</repositoryLayout> |
| 48 | <repositoryName>lib</repositoryName> |
| 49 | </configuration> |
| 50 | <phase>package</phase> |
| 51 | <goals> |
| 52 | <goal>assemble</goal> |
| 53 | </goals> |
| 54 | </execution> |
| 55 | </executions> |
| 56 | </plugin> |
| 57 | <plugin> |
| 58 | <artifactId>maven-assembly-plugin</artifactId> |
| 59 | <version>2.2-beta-5</version> |
| 60 | <executions> |
| 61 | <execution> |
| 62 | <configuration> |
| 63 | <descriptors> |
| 64 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 65 | </descriptors> |
| 66 | </configuration> |
| 67 | <phase>package</phase> |
| 68 | <goals> |
| 69 | <goal>attached</goal> |
| 70 | </goals> |
| 71 | </execution> |
| 72 | </executions> |
| 73 | </plugin> |
| 74 | </plugins> |
| 75 | </build> |
| 76 | <dependencies> |
| 77 | <dependency> |
| 78 | <groupId>edu.uci.ics.hyracks.examples.btree</groupId> |
| 79 | <artifactId>btreehelper</artifactId> |
Vinayak Borkar | 55e8f8c | 2013-06-05 23:16:43 -0700 | [diff] [blame^] | 80 | <version>0.2.6</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 81 | <scope>compile</scope> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>edu.uci.ics.hyracks</groupId> |
| 85 | <artifactId>hyracks-control-cc</artifactId> |
Vinayak Borkar | 55e8f8c | 2013-06-05 23:16:43 -0700 | [diff] [blame^] | 86 | <version>0.2.6</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 87 | <type>jar</type> |
| 88 | <scope>compile</scope> |
| 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>edu.uci.ics.hyracks</groupId> |
| 92 | <artifactId>hyracks-control-nc</artifactId> |
Vinayak Borkar | 55e8f8c | 2013-06-05 23:16:43 -0700 | [diff] [blame^] | 93 | <version>0.2.6</version> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 94 | <type>jar</type> |
| 95 | <scope>compile</scope> |
| 96 | </dependency> |
| 97 | </dependencies> |
| 98 | </project> |