Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 2 | ! Licensed to the Apache Software Foundation (ASF) under one |
| 3 | ! or more contributor license agreements. See the NOTICE file |
| 4 | ! distributed with this work for additional information |
| 5 | ! regarding copyright ownership. The ASF licenses this file |
| 6 | ! to you under the Apache License, Version 2.0 (the |
| 7 | ! "License"); you may not use this file except in compliance |
| 8 | ! with the License. You may obtain a copy of the License at |
| 9 | ! |
| 10 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | ! |
| 12 | ! Unless required by applicable law or agreed to in writing, |
| 13 | ! software distributed under the License is distributed on an |
| 14 | ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | ! KIND, either express or implied. See the License for the |
| 16 | ! specific language governing permissions and limitations |
| 17 | ! under the License. |
Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 18 | !--> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 19 | <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"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <artifactId>asterix-server</artifactId> |
| 22 | <name>asterix-server</name> |
| 23 | <parent> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 24 | <groupId>org.apache.asterix</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 25 | <artifactId>asterix</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 26 | <version>0.8.8-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 27 | </parent> |
| 28 | |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 29 | <licenses> |
| 30 | <license> |
| 31 | <name>Apache License, Version 2.0</name> |
| 32 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 33 | <distribution>repo</distribution> |
| 34 | <comments>A business-friendly OSS license</comments> |
| 35 | </license> |
| 36 | </licenses> |
| 37 | |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 38 | <build> |
| 39 | <plugins> |
| 40 | <plugin> |
| 41 | <groupId>org.codehaus.mojo</groupId> |
| 42 | <artifactId>appassembler-maven-plugin</artifactId> |
| 43 | <version>1.3</version> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 44 | <configuration> |
| 45 | <assembleDirectory> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 46 | ${project.build.directory}/appassembler |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 47 | </assembleDirectory> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 48 | <repositoryLayout>flat</repositoryLayout> |
| 49 | <programs> |
| 50 | <program> |
| 51 | <platforms> |
| 52 | <platform>unix</platform> |
| 53 | </platforms> |
| 54 | <name>asterixcc</name> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 55 | <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 56 | <commandLineArguments> |
| 57 | <commandLineArgument>-app-cc-main-class</commandLineArgument> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 58 | <commandLineArgument>org.apache.asterix.hyracks.bootstrap.CCApplicationEntryPoint</commandLineArgument> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 59 | </commandLineArguments> |
| 60 | </program> |
| 61 | <program> |
| 62 | <platforms> |
| 63 | <platform>unix</platform> |
| 64 | </platforms> |
| 65 | <name>asterixnc</name> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 66 | <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 67 | <commandLineArguments> |
| 68 | <commandLineArgument>-app-nc-main-class</commandLineArgument> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 69 | <commandLineArgument>org.apache.asterix.hyracks.bootstrap.NCApplicationEntryPoint</commandLineArgument> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 70 | </commandLineArguments> |
| 71 | </program> |
| 72 | </programs> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 73 | <daemons> |
| 74 | <daemon> |
| 75 | <id>asterixcc</id> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 76 | <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 77 | <platforms> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 78 | <platform>booter-windows</platform> |
| 79 | </platforms> |
| 80 | <commandLineArguments> |
| 81 | <commandLineArgument>-app-cc-main-class</commandLineArgument> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 82 | <commandLineArgument>org.apache.asterix.hyracks.bootstrap.CCApplicationEntryPoint</commandLineArgument> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 83 | </commandLineArguments> |
| 84 | </daemon> |
| 85 | <daemon> |
| 86 | <id>asterixnc</id> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 87 | <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 88 | <platforms> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 89 | <platform>booter-windows</platform> |
| 90 | </platforms> |
| 91 | <commandLineArguments> |
| 92 | <commandLineArgument>-app-nc-main-class</commandLineArgument> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 93 | <commandLineArgument>org.apache.asterix.hyracks.bootstrap.NCApplicationEntryPoint</commandLineArgument> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 94 | </commandLineArguments> |
| 95 | </daemon> |
| 96 | </daemons> |
| 97 | </configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 98 | <executions> |
| 99 | <execution> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 100 | <goals> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 101 | <goal>assemble</goal> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 102 | <goal>generate-daemons</goal> |
| 103 | <goal>create-repository</goal> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 104 | </goals> |
| 105 | </execution> |
| 106 | </executions> |
| 107 | </plugin> |
| 108 | <plugin> |
| 109 | <artifactId>maven-assembly-plugin</artifactId> |
| 110 | <version>2.2-beta-5</version> |
| 111 | <executions> |
| 112 | <execution> |
| 113 | <configuration> |
| 114 | <descriptors> |
| 115 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 116 | </descriptors> |
| 117 | </configuration> |
| 118 | <phase>package</phase> |
| 119 | <goals> |
| 120 | <goal>attached</goal> |
| 121 | </goals> |
| 122 | </execution> |
| 123 | </executions> |
| 124 | </plugin> |
| 125 | </plugins> |
| 126 | </build> |
| 127 | <dependencies> |
| 128 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 129 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 130 | <artifactId>hyracks-control-cc</artifactId> |
| 131 | <type>jar</type> |
| 132 | <scope>compile</scope> |
| 133 | </dependency> |
| 134 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 135 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 136 | <artifactId>hyracks-control-nc</artifactId> |
| 137 | <type>jar</type> |
| 138 | <scope>compile</scope> |
| 139 | </dependency> |
| 140 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 141 | <groupId>org.apache.asterix</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 142 | <artifactId>asterix-app</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 143 | <version>0.8.8-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 144 | </dependency> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 145 | <dependency> |
| 146 | <groupId>org.codehaus.mojo.appassembler</groupId> |
| 147 | <artifactId>appassembler-booter</artifactId> |
| 148 | <version>1.3.1</version> |
| 149 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 150 | </dependencies> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 151 | </project> |