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> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 39 | <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory> |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 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> |
Chris Hillery | db831a4 | 2016-04-07 18:02:46 -0700 | [diff] [blame] | 53 | <useWildcardClassPath>true</useWildcardClassPath> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 54 | <programs> |
| 55 | <program> |
| 56 | <platforms> |
| 57 | <platform>unix</platform> |
| 58 | </platforms> |
| 59 | <name>asterixcc</name> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 60 | <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 61 | <commandLineArguments> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 62 | <commandLineArgument>-app-cc-main-class</commandLineArgument> |
| 63 | <commandLineArgument>org.apache.asterix.hyracks.bootstrap.CCApplicationEntryPoint</commandLineArgument> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 64 | </commandLineArguments> |
| 65 | </program> |
| 66 | <program> |
| 67 | <platforms> |
| 68 | <platform>unix</platform> |
| 69 | </platforms> |
| 70 | <name>asterixnc</name> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 71 | <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 72 | <commandLineArguments> |
| 73 | <commandLineArgument>-app-nc-main-class</commandLineArgument> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 74 | <commandLineArgument>org.apache.asterix.hyracks.bootstrap.NCApplicationEntryPoint</commandLineArgument> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 75 | </commandLineArguments> |
| 76 | </program> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 77 | <program> |
| 78 | <platforms> |
| 79 | <platform>unix</platform> |
| 80 | </platforms> |
| 81 | <name>asterixncservice</name> |
| 82 | <mainClass>org.apache.hyracks.control.nc.service.NCService</mainClass> |
| 83 | </program> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 84 | </programs> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 85 | <daemons> |
| 86 | <daemon> |
| 87 | <id>asterixcc</id> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 88 | <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 89 | <platforms> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 90 | <platform>booter-windows</platform> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 91 | </platforms> |
| 92 | <commandLineArguments> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 93 | <commandLineArgument>-app-cc-main-class</commandLineArgument> |
| 94 | <commandLineArgument>org.apache.asterix.hyracks.bootstrap.CCApplicationEntryPoint</commandLineArgument> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 95 | </commandLineArguments> |
| 96 | </daemon> |
| 97 | <daemon> |
| 98 | <id>asterixnc</id> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 99 | <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 100 | <platforms> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 101 | <platform>booter-windows</platform> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 102 | </platforms> |
| 103 | <commandLineArguments> |
| 104 | <commandLineArgument>-app-nc-main-class</commandLineArgument> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 105 | <commandLineArgument>org.apache.asterix.hyracks.bootstrap.NCApplicationEntryPoint</commandLineArgument> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 106 | </commandLineArguments> |
| 107 | </daemon> |
| 108 | </daemons> |
| 109 | </configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 110 | <executions> |
| 111 | <execution> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 112 | <goals> |
zheilbron | 156149b | 2013-06-24 11:48:25 -0700 | [diff] [blame] | 113 | <goal>assemble</goal> |
zheilbron | 01b0b63 | 2013-06-20 17:46:30 -0700 | [diff] [blame] | 114 | <goal>generate-daemons</goal> |
| 115 | <goal>create-repository</goal> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 116 | </goals> |
| 117 | </execution> |
| 118 | </executions> |
| 119 | </plugin> |
| 120 | <plugin> |
| 121 | <artifactId>maven-assembly-plugin</artifactId> |
| 122 | <version>2.2-beta-5</version> |
| 123 | <executions> |
| 124 | <execution> |
| 125 | <configuration> |
| 126 | <descriptors> |
| 127 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 128 | </descriptors> |
| 129 | </configuration> |
| 130 | <phase>package</phase> |
| 131 | <goals> |
| 132 | <goal>attached</goal> |
| 133 | </goals> |
| 134 | </execution> |
| 135 | </executions> |
| 136 | </plugin> |
| 137 | </plugins> |
| 138 | </build> |
Chris Hillery | db831a4 | 2016-04-07 18:02:46 -0700 | [diff] [blame] | 139 | <profiles> |
| 140 | <profile> |
| 141 | <id>opt-modules</id> |
| 142 | <activation> |
| 143 | <file> |
| 144 | <exists>../asterix-opt/pom.xml</exists> |
| 145 | </file> |
| 146 | </activation> |
| 147 | <dependencies> |
| 148 | <dependency> |
| 149 | <groupId>org.apache.asterix</groupId> |
| 150 | <artifactId>asterix-opt-bom</artifactId> |
| 151 | <version>0.1-SNAPSHOT</version> |
| 152 | <type>pom</type> |
| 153 | </dependency> |
| 154 | </dependencies> |
| 155 | </profile> |
| 156 | </profiles> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 157 | <dependencies> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 158 | <dependency> |
| 159 | <groupId>org.apache.hyracks</groupId> |
| 160 | <artifactId>hyracks-control-cc</artifactId> |
| 161 | <type>jar</type> |
| 162 | <scope>compile</scope> |
| 163 | </dependency> |
| 164 | <dependency> |
| 165 | <groupId>org.apache.hyracks</groupId> |
| 166 | <artifactId>hyracks-control-nc</artifactId> |
| 167 | <type>jar</type> |
| 168 | <scope>compile</scope> |
| 169 | </dependency> |
| 170 | <dependency> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 171 | <groupId>org.apache.hyracks</groupId> |
| 172 | <artifactId>hyracks-nc-service</artifactId> |
| 173 | <type>jar</type> |
| 174 | <scope>compile</scope> |
| 175 | </dependency> |
| 176 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 177 | <groupId>org.apache.asterix</groupId> |
| 178 | <artifactId>asterix-app</artifactId> |
| 179 | <version>0.8.9-SNAPSHOT</version> |
| 180 | </dependency> |
| 181 | <dependency> |
| 182 | <groupId>org.codehaus.mojo.appassembler</groupId> |
| 183 | <artifactId>appassembler-booter</artifactId> |
| 184 | <version>1.3.1</version> |
| 185 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 186 | </dependencies> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 187 | </project> |