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> |
Ian Maxon | ab556d1 | 2016-02-02 18:18:05 -0800 | [diff] [blame] | 25 | <artifactId>apache-asterixdb</artifactId> |
Ian Maxon | c1889c0 | 2016-02-10 15:26:24 -0800 | [diff] [blame] | 26 | <version>0.8.9-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 | |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 38 | <properties> |
| 39 | <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory> |
| 40 | </properties> |
| 41 | |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 42 | <build> |
| 43 | <plugins> |
| 44 | <plugin> |
| 45 | <groupId>org.codehaus.mojo</groupId> |
| 46 | <artifactId>appassembler-maven-plugin</artifactId> |
| 47 | <version>1.3</version> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 48 | <configuration> |
| 49 | <assembleDirectory> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 50 | ${project.build.directory}/appassembler |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 51 | </assembleDirectory> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 52 | <repositoryLayout>flat</repositoryLayout> |
| 53 | <programs> |
| 54 | <program> |
| 55 | <platforms> |
| 56 | <platform>unix</platform> |
| 57 | </platforms> |
| 58 | <name>asterixcc</name> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 59 | <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 60 | <commandLineArguments> |
| 61 | <commandLineArgument>-app-cc-main-class</commandLineArgument> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 62 | <commandLineArgument>org.apache.asterix.hyracks.bootstrap.CCApplicationEntryPoint</commandLineArgument> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 63 | </commandLineArguments> |
| 64 | </program> |
| 65 | <program> |
| 66 | <platforms> |
| 67 | <platform>unix</platform> |
| 68 | </platforms> |
| 69 | <name>asterixnc</name> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 70 | <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 71 | <commandLineArguments> |
| 72 | <commandLineArgument>-app-nc-main-class</commandLineArgument> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 73 | <commandLineArgument>org.apache.asterix.hyracks.bootstrap.NCApplicationEntryPoint</commandLineArgument> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 74 | </commandLineArguments> |
| 75 | </program> |
| 76 | </programs> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 77 | <daemons> |
| 78 | <daemon> |
| 79 | <id>asterixcc</id> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 80 | <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 81 | <platforms> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 82 | <platform>booter-windows</platform> |
| 83 | </platforms> |
| 84 | <commandLineArguments> |
| 85 | <commandLineArgument>-app-cc-main-class</commandLineArgument> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 86 | <commandLineArgument>org.apache.asterix.hyracks.bootstrap.CCApplicationEntryPoint</commandLineArgument> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 87 | </commandLineArguments> |
| 88 | </daemon> |
| 89 | <daemon> |
| 90 | <id>asterixnc</id> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 91 | <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 92 | <platforms> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 93 | <platform>booter-windows</platform> |
| 94 | </platforms> |
| 95 | <commandLineArguments> |
| 96 | <commandLineArgument>-app-nc-main-class</commandLineArgument> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 97 | <commandLineArgument>org.apache.asterix.hyracks.bootstrap.NCApplicationEntryPoint</commandLineArgument> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 98 | </commandLineArguments> |
| 99 | </daemon> |
| 100 | </daemons> |
| 101 | </configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 102 | <executions> |
| 103 | <execution> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 104 | <goals> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 105 | <goal>assemble</goal> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 106 | <goal>generate-daemons</goal> |
| 107 | <goal>create-repository</goal> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 108 | </goals> |
| 109 | </execution> |
| 110 | </executions> |
| 111 | </plugin> |
| 112 | <plugin> |
| 113 | <artifactId>maven-assembly-plugin</artifactId> |
| 114 | <version>2.2-beta-5</version> |
| 115 | <executions> |
| 116 | <execution> |
| 117 | <configuration> |
| 118 | <descriptors> |
| 119 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 120 | </descriptors> |
| 121 | </configuration> |
| 122 | <phase>package</phase> |
| 123 | <goals> |
| 124 | <goal>attached</goal> |
| 125 | </goals> |
| 126 | </execution> |
| 127 | </executions> |
| 128 | </plugin> |
| 129 | </plugins> |
| 130 | </build> |
| 131 | <dependencies> |
| 132 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 133 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 134 | <artifactId>hyracks-control-cc</artifactId> |
| 135 | <type>jar</type> |
| 136 | <scope>compile</scope> |
| 137 | </dependency> |
| 138 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 139 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 140 | <artifactId>hyracks-control-nc</artifactId> |
| 141 | <type>jar</type> |
| 142 | <scope>compile</scope> |
| 143 | </dependency> |
| 144 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 145 | <groupId>org.apache.asterix</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 146 | <artifactId>asterix-app</artifactId> |
Ian Maxon | c1889c0 | 2016-02-10 15:26:24 -0800 | [diff] [blame] | 147 | <version>0.8.9-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 148 | </dependency> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 149 | <dependency> |
| 150 | <groupId>org.codehaus.mojo.appassembler</groupId> |
| 151 | <artifactId>appassembler-booter</artifactId> |
| 152 | <version>1.3.1</version> |
| 153 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 154 | </dependencies> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 155 | </project> |