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 | 0c86039 | 2012-10-06 18:47:20 +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 | <artifactId>hyracks-server</artifactId> |
buyingyi | 8d79d16 | 2012-10-22 23:04:47 +0000 | [diff] [blame] | 18 | <name>hyracks-server</name> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 19 | <parent> |
| 20 | <groupId>edu.uci.ics.hyracks</groupId> |
| 21 | <artifactId>hyracks</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame] | 22 | <version>0.2.10-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 23 | </parent> |
| 24 | |
| 25 | <build> |
| 26 | <plugins> |
| 27 | <plugin> |
| 28 | <groupId>org.apache.maven.plugins</groupId> |
| 29 | <artifactId>maven-compiler-plugin</artifactId> |
| 30 | <version>2.0.2</version> |
| 31 | <configuration> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 32 | <source>1.7</source> |
| 33 | <target>1.7</target> |
| 34 | <fork>true</fork> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 35 | </configuration> |
| 36 | </plugin> |
| 37 | <plugin> |
| 38 | <groupId>org.codehaus.mojo</groupId> |
| 39 | <artifactId>appassembler-maven-plugin</artifactId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 40 | <version>1.3</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 41 | <executions> |
| 42 | <execution> |
| 43 | <configuration> |
| 44 | <programs> |
| 45 | <program> |
| 46 | <mainClass>edu.uci.ics.hyracks.control.cc.CCDriver</mainClass> |
| 47 | <name>hyrackscc</name> |
| 48 | </program> |
| 49 | <program> |
| 50 | <mainClass>edu.uci.ics.hyracks.control.nc.NCDriver</mainClass> |
| 51 | <name>hyracksnc</name> |
| 52 | </program> |
| 53 | <program> |
| 54 | <mainClass>edu.uci.ics.hyracks.server.drivers.VirtualClusterDriver</mainClass> |
| 55 | <name>hyracks-virtual-cluster</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 | <dependencies> |
| 88 | <dependency> |
| 89 | <groupId>edu.uci.ics.hyracks</groupId> |
| 90 | <artifactId>hyracks-control-cc</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame] | 91 | <version>0.2.10-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 92 | <type>jar</type> |
| 93 | <scope>compile</scope> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>edu.uci.ics.hyracks</groupId> |
| 97 | <artifactId>hyracks-control-nc</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame] | 98 | <version>0.2.10-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 99 | <type>jar</type> |
| 100 | <scope>compile</scope> |
| 101 | </dependency> |
| 102 | </dependencies> |
| 103 | </project> |