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 | 2d232b6 | 2017-01-18 12:17:09 -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> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame] | 47 | <artifactId>maven-dependency-plugin</artifactId> |
| 48 | <version>2.10</version> |
| 49 | <configuration> |
| 50 | <failOnWarning>true</failOnWarning> |
| 51 | <outputXML>true</outputXML> |
| 52 | <usedDependencies>org.apache.hyracks:hyracks-control-nc</usedDependencies> |
| 53 | </configuration> |
| 54 | <executions> |
| 55 | <execution> |
| 56 | <phase>process-test-classes</phase> |
| 57 | <goals> |
| 58 | <goal>analyze-only</goal> |
| 59 | </goals> |
| 60 | </execution> |
| 61 | </executions> |
| 62 | </plugin> |
| 63 | <plugin> |
| 64 | <groupId>org.apache.maven.plugins</groupId> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 65 | <artifactId>maven-failsafe-plugin</artifactId> |
| 66 | <version>2.6</version> |
| 67 | <configuration> |
| 68 | <runOrder>alphabetical</runOrder> |
| 69 | <forkMode>pertest</forkMode> |
| 70 | <systemProperties> |
| 71 | <property> |
| 72 | <name>java.util.logging.config.file</name> |
| 73 | <value>src/test/resources/logging.properties</value> |
| 74 | </property> |
| 75 | </systemProperties> |
| 76 | </configuration> |
| 77 | <executions> |
| 78 | <execution> |
| 79 | <goals> |
| 80 | <goal>integration-test</goal> |
| 81 | <goal>verify</goal> |
| 82 | </goals> |
| 83 | </execution> |
| 84 | </executions> |
| 85 | </plugin> |
| 86 | |
| 87 | <plugin> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 88 | <groupId>org.codehaus.mojo</groupId> |
| 89 | <artifactId>appassembler-maven-plugin</artifactId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 90 | <version>1.3</version> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 91 | <executions> |
| 92 | <execution> |
| 93 | <configuration> |
| 94 | <programs> |
| 95 | <program> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 96 | <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 97 | <name>hyrackscc</name> |
| 98 | </program> |
| 99 | <program> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 100 | <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 101 | <name>hyracksnc</name> |
| 102 | </program> |
| 103 | <program> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 104 | <mainClass>org.apache.hyracks.control.nc.service.NCService</mainClass> |
| 105 | <name>hyracksncservice</name> |
| 106 | </program> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 107 | </programs> |
| 108 | <repositoryLayout>flat</repositoryLayout> |
| 109 | <repositoryName>lib</repositoryName> |
| 110 | </configuration> |
| 111 | <phase>package</phase> |
| 112 | <goals> |
| 113 | <goal>assemble</goal> |
| 114 | </goals> |
| 115 | </execution> |
| 116 | </executions> |
| 117 | </plugin> |
| 118 | <plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 119 | <groupId>org.apache.maven.plugins</groupId> |
| 120 | <artifactId>maven-deploy-plugin</artifactId> |
| 121 | <configuration> |
| 122 | <skip>true</skip> |
| 123 | </configuration> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 124 | </plugin> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 125 | <plugin> |
| 126 | <artifactId>maven-antrun-plugin</artifactId> |
| 127 | <version>1.6</version> |
| 128 | <executions> |
| 129 | <execution> |
| 130 | <id>process-test-classes</id> |
| 131 | <phase>package</phase> |
| 132 | <configuration> |
| 133 | <target> |
| 134 | <chmod file="target/appassembler/bin/*" perm="755" /> |
| 135 | </target> |
| 136 | </configuration> |
| 137 | <goals> |
| 138 | <goal>run</goal> |
| 139 | </goals> |
| 140 | </execution> |
| 141 | </executions> |
| 142 | </plugin> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 143 | </plugins> |
| 144 | </build> |
| 145 | <dependencies> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 146 | <dependency> |
| 147 | <groupId>org.apache.hyracks</groupId> |
| 148 | <artifactId>hyracks-control-cc</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 149 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 150 | </dependency> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 151 | <dependency> |
| 152 | <groupId>org.apache.hyracks</groupId> |
| 153 | <artifactId>hyracks-nc-service</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 154 | <version>${project.version}</version> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 155 | </dependency> |
| 156 | <dependency> |
Michael Blow | e97dbe5 | 2016-08-06 13:36:14 -0400 | [diff] [blame] | 157 | <groupId>org.apache.httpcomponents</groupId> |
| 158 | <artifactId>httpclient</artifactId> |
| 159 | <version>4.5.2</version> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 160 | </dependency> |
| 161 | <dependency> |
| 162 | <groupId>junit</groupId> |
| 163 | <artifactId>junit</artifactId> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 164 | <scope>test</scope> |
| 165 | </dependency> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame] | 166 | <dependency> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame] | 167 | <groupId>org.apache.httpcomponents</groupId> |
| 168 | <artifactId>httpcore</artifactId> |
Michael Blow | fbccee6 | 2016-10-26 12:18:30 -0400 | [diff] [blame] | 169 | <version>4.4.5</version> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame] | 170 | </dependency> |
| 171 | <dependency> |
| 172 | <groupId>org.apache.commons</groupId> |
| 173 | <artifactId>commons-lang3</artifactId> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame] | 174 | </dependency> |
| 175 | <dependency> |
| 176 | <groupId>org.apache.hyracks</groupId> |
| 177 | <artifactId>hyracks-control-nc</artifactId> |
| 178 | <version>${project.version}</version> |
| 179 | </dependency> |
Ian Maxon | d49bc6e | 2017-01-05 18:50:57 -0800 | [diff] [blame] | 180 | <dependency> |
| 181 | <groupId>com.fasterxml.jackson.core</groupId> |
| 182 | <artifactId>jackson-databind</artifactId> |
| 183 | </dependency> |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 184 | </dependencies> |
| 185 | </project> |