Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -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 | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 18 | !--> |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 19 | |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 20 | <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"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <artifactId>hyracks-server</artifactId> |
buyingyi | 8d79d16 | 2012-10-22 23:04:47 +0000 | [diff] [blame] | 23 | <name>hyracks-server</name> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 24 | <parent> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 25 | <groupId>org.apache.hyracks</groupId> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 26 | <artifactId>hyracks</artifactId> |
Ian Maxon | 14be946 | 2016-02-10 14:55:42 -0800 | [diff] [blame] | 27 | <version>0.2.18-SNAPSHOT</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 28 | </parent> |
| 29 | |
Ian | e82f811 | 2014-11-19 12:31:18 -0800 | [diff] [blame] | 30 | <licenses> |
| 31 | <license> |
| 32 | <name>Apache License, Version 2.0</name> |
| 33 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 34 | <distribution>repo</distribution> |
| 35 | <comments>A business-friendly OSS license</comments> |
| 36 | </license> |
| 37 | </licenses> |
| 38 | |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 39 | <properties> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 40 | <root.dir>${basedir}/../..</root.dir> |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 41 | </properties> |
Ian | e82f811 | 2014-11-19 12:31:18 -0800 | [diff] [blame] | 42 | |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 43 | <build> |
| 44 | <plugins> |
| 45 | <plugin> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 46 | <groupId>org.apache.maven.plugins</groupId> |
| 47 | <artifactId>maven-failsafe-plugin</artifactId> |
| 48 | <version>2.6</version> |
| 49 | <configuration> |
| 50 | <runOrder>alphabetical</runOrder> |
| 51 | <forkMode>pertest</forkMode> |
| 52 | <systemProperties> |
| 53 | <property> |
| 54 | <name>java.util.logging.config.file</name> |
| 55 | <value>src/test/resources/logging.properties</value> |
| 56 | </property> |
| 57 | </systemProperties> |
| 58 | </configuration> |
| 59 | <executions> |
| 60 | <execution> |
| 61 | <goals> |
| 62 | <goal>integration-test</goal> |
| 63 | <goal>verify</goal> |
| 64 | </goals> |
| 65 | </execution> |
| 66 | </executions> |
| 67 | </plugin> |
| 68 | |
| 69 | <plugin> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 70 | <groupId>org.codehaus.mojo</groupId> |
| 71 | <artifactId>appassembler-maven-plugin</artifactId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 72 | <version>1.3</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 73 | <executions> |
| 74 | <execution> |
| 75 | <configuration> |
| 76 | <programs> |
| 77 | <program> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 78 | <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 79 | <name>hyrackscc</name> |
| 80 | </program> |
| 81 | <program> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 82 | <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 83 | <name>hyracksnc</name> |
| 84 | </program> |
| 85 | <program> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 86 | <mainClass>org.apache.hyracks.control.nc.service.NCService</mainClass> |
| 87 | <name>hyracksncservice</name> |
| 88 | </program> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 89 | </programs> |
| 90 | <repositoryLayout>flat</repositoryLayout> |
| 91 | <repositoryName>lib</repositoryName> |
| 92 | </configuration> |
| 93 | <phase>package</phase> |
| 94 | <goals> |
| 95 | <goal>assemble</goal> |
| 96 | </goals> |
| 97 | </execution> |
| 98 | </executions> |
| 99 | </plugin> |
| 100 | <plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 101 | <groupId>org.apache.maven.plugins</groupId> |
| 102 | <artifactId>maven-deploy-plugin</artifactId> |
| 103 | <configuration> |
| 104 | <skip>true</skip> |
| 105 | </configuration> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 106 | </plugin> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 107 | <plugin> |
| 108 | <artifactId>maven-antrun-plugin</artifactId> |
| 109 | <version>1.6</version> |
| 110 | <executions> |
| 111 | <execution> |
| 112 | <id>process-test-classes</id> |
| 113 | <phase>package</phase> |
| 114 | <configuration> |
| 115 | <target> |
| 116 | <chmod file="target/appassembler/bin/*" perm="755" /> |
| 117 | </target> |
| 118 | </configuration> |
| 119 | <goals> |
| 120 | <goal>run</goal> |
| 121 | </goals> |
| 122 | </execution> |
| 123 | </executions> |
| 124 | </plugin> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 125 | </plugins> |
| 126 | </build> |
| 127 | <dependencies> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 128 | <dependency> |
| 129 | <groupId>org.apache.hyracks</groupId> |
| 130 | <artifactId>hyracks-control-cc</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 131 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 132 | <type>jar</type> |
| 133 | <scope>compile</scope> |
| 134 | </dependency> |
| 135 | <dependency> |
| 136 | <groupId>org.apache.hyracks</groupId> |
| 137 | <artifactId>hyracks-control-nc</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 138 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 139 | <type>jar</type> |
| 140 | <scope>compile</scope> |
| 141 | </dependency> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 142 | <dependency> |
| 143 | <groupId>org.apache.hyracks</groupId> |
| 144 | <artifactId>hyracks-nc-service</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 145 | <version>${project.version}</version> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 146 | <type>jar</type> |
| 147 | <scope>compile</scope> |
| 148 | </dependency> |
| 149 | <dependency> |
Michael Blow | e97dbe5 | 2016-08-06 13:36:14 -0400 | [diff] [blame] | 150 | <groupId>org.apache.httpcomponents</groupId> |
| 151 | <artifactId>httpclient</artifactId> |
| 152 | <version>4.5.2</version> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 153 | </dependency> |
| 154 | <dependency> |
| 155 | <groupId>junit</groupId> |
| 156 | <artifactId>junit</artifactId> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 157 | <scope>test</scope> |
| 158 | </dependency> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 159 | </dependencies> |
| 160 | </project> |