Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -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 | 5ee049d | 2013-04-06 21:21:29 +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>asterix-server</artifactId> |
| 18 | <name>asterix-server</name> |
| 19 | <parent> |
| 20 | <groupId>edu.uci.ics.asterix</groupId> |
| 21 | <artifactId>asterix</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 22 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 23 | </parent> |
| 24 | |
| 25 | <build> |
| 26 | <plugins> |
| 27 | <plugin> |
| 28 | <groupId>org.codehaus.mojo</groupId> |
| 29 | <artifactId>appassembler-maven-plugin</artifactId> |
| 30 | <version>1.3</version> |
| 31 | <executions> |
| 32 | <execution> |
| 33 | <configuration> |
| 34 | <programs> |
| 35 | <program> |
| 36 | <mainClass>edu.uci.ics.hyracks.control.cc.CCDriver</mainClass> |
| 37 | <name>asterixcc</name> |
| 38 | <commandLineArguments> |
| 39 | <commandLineArgument>-app-cc-main-class</commandLineArgument> |
| 40 | <commandLineArgument>edu.uci.ics.asterix.hyracks.bootstrap.CCApplicationEntryPoint</commandLineArgument> |
| 41 | </commandLineArguments> |
| 42 | </program> |
| 43 | <program> |
| 44 | <mainClass>edu.uci.ics.hyracks.control.nc.NCDriver</mainClass> |
| 45 | <name>asterixnc</name> |
| 46 | <commandLineArguments> |
| 47 | <commandLineArgument>-app-nc-main-class</commandLineArgument> |
| 48 | <commandLineArgument>edu.uci.ics.asterix.hyracks.bootstrap.NCApplicationEntryPoint</commandLineArgument> |
| 49 | </commandLineArguments> |
| 50 | </program> |
| 51 | </programs> |
| 52 | <repositoryLayout>flat</repositoryLayout> |
| 53 | <repositoryName>lib</repositoryName> |
| 54 | </configuration> |
| 55 | <phase>package</phase> |
| 56 | <goals> |
| 57 | <goal>assemble</goal> |
| 58 | </goals> |
| 59 | </execution> |
| 60 | </executions> |
| 61 | </plugin> |
| 62 | <plugin> |
| 63 | <artifactId>maven-assembly-plugin</artifactId> |
| 64 | <version>2.2-beta-5</version> |
| 65 | <executions> |
| 66 | <execution> |
| 67 | <configuration> |
| 68 | <descriptors> |
| 69 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 70 | </descriptors> |
| 71 | </configuration> |
| 72 | <phase>package</phase> |
| 73 | <goals> |
| 74 | <goal>attached</goal> |
| 75 | </goals> |
| 76 | </execution> |
| 77 | </executions> |
| 78 | </plugin> |
| 79 | </plugins> |
| 80 | </build> |
| 81 | <dependencies> |
| 82 | <dependency> |
| 83 | <groupId>edu.uci.ics.hyracks</groupId> |
| 84 | <artifactId>hyracks-control-cc</artifactId> |
| 85 | <type>jar</type> |
| 86 | <scope>compile</scope> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>edu.uci.ics.hyracks</groupId> |
| 90 | <artifactId>hyracks-control-nc</artifactId> |
| 91 | <type>jar</type> |
| 92 | <scope>compile</scope> |
| 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>edu.uci.ics.asterix</groupId> |
| 96 | <artifactId>asterix-app</artifactId> |
Vinayak Borkar | b27deb2 | 2013-06-06 00:31:52 -0700 | [diff] [blame] | 97 | <version>0.8.1-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 98 | </dependency> |
| 99 | </dependencies> |
| 100 | </project> |