blob: 43f5e22381357941066116f6f2a73f437793a105 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
Ian Maxond8857792015-09-11 14:19:53 -07002 ! 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 Westmann276bbc22013-06-05 18:56:27 -070018 !-->
Ian Maxond8857792015-09-11 14:19:53 -070019
vinayakb0c860392012-10-06 18:47:20 +000020<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>
buyingyi8d79d162012-10-22 23:04:47 +000023 <name>hyracks-server</name>
vinayakb0c860392012-10-06 18:47:20 +000024 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070025 <groupId>org.apache.hyracks</groupId>
vinayakb0c860392012-10-06 18:47:20 +000026 <artifactId>hyracks</artifactId>
AsterixDB Jenkins92a9a652017-08-07 17:23:07 -070027 <version>0.3.3-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000028 </parent>
29
Iane82f8112014-11-19 12:31:18 -080030 <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 Maxon9e37c962015-11-25 07:38:37 -080039 <properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070040 <root.dir>${basedir}/../..</root.dir>
Ian Maxon9e37c962015-11-25 07:38:37 -080041 </properties>
Iane82f8112014-11-19 12:31:18 -080042
vinayakb0c860392012-10-06 18:47:20 +000043 <build>
44 <plugins>
45 <plugin>
Chris Hillery5ba58de2016-05-09 19:44:06 -070046 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -040047 <artifactId>maven-dependency-plugin</artifactId>
48 <version>2.10</version>
49 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -050050 <usedDependencies combine.children="append">
51 <usedDependency>org.apache.hyracks:hyracks-control-nc</usedDependency>
52 </usedDependencies>
Michael Blowba358122016-10-13 19:56:03 -040053 </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 Hillery5ba58de2016-05-09 19:44:06 -070065 <artifactId>maven-failsafe-plugin</artifactId>
Chris Hillery5ba58de2016-05-09 19:44:06 -070066 <configuration>
67 <runOrder>alphabetical</runOrder>
68 <forkMode>pertest</forkMode>
69 <systemProperties>
70 <property>
71 <name>java.util.logging.config.file</name>
72 <value>src/test/resources/logging.properties</value>
73 </property>
74 </systemProperties>
75 </configuration>
76 <executions>
77 <execution>
78 <goals>
79 <goal>integration-test</goal>
80 <goal>verify</goal>
81 </goals>
82 </execution>
83 </executions>
84 </plugin>
85
86 <plugin>
vinayakb0c860392012-10-06 18:47:20 +000087 <groupId>org.codehaus.mojo</groupId>
88 <artifactId>appassembler-maven-plugin</artifactId>
89 <executions>
90 <execution>
91 <configuration>
92 <programs>
93 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070094 <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass>
vinayakb0c860392012-10-06 18:47:20 +000095 <name>hyrackscc</name>
96 </program>
97 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070098 <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass>
vinayakb0c860392012-10-06 18:47:20 +000099 <name>hyracksnc</name>
100 </program>
101 <program>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700102 <mainClass>org.apache.hyracks.control.nc.service.NCService</mainClass>
103 <name>hyracksncservice</name>
104 </program>
vinayakb0c860392012-10-06 18:47:20 +0000105 </programs>
106 <repositoryLayout>flat</repositoryLayout>
107 <repositoryName>lib</repositoryName>
108 </configuration>
109 <phase>package</phase>
110 <goals>
111 <goal>assemble</goal>
112 </goals>
113 </execution>
114 </executions>
115 </plugin>
116 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700117 <groupId>org.apache.maven.plugins</groupId>
118 <artifactId>maven-deploy-plugin</artifactId>
119 <configuration>
120 <skip>true</skip>
121 </configuration>
vinayakb0c860392012-10-06 18:47:20 +0000122 </plugin>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700123 <plugin>
124 <artifactId>maven-antrun-plugin</artifactId>
125 <version>1.6</version>
126 <executions>
127 <execution>
128 <id>process-test-classes</id>
129 <phase>package</phase>
130 <configuration>
131 <target>
132 <chmod file="target/appassembler/bin/*" perm="755" />
133 </target>
134 </configuration>
135 <goals>
136 <goal>run</goal>
137 </goals>
138 </execution>
139 </executions>
140 </plugin>
vinayakb0c860392012-10-06 18:47:20 +0000141 </plugins>
142 </build>
143 <dependencies>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700144 <dependency>
145 <groupId>org.apache.hyracks</groupId>
146 <artifactId>hyracks-control-cc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400147 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700148 </dependency>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700149 <dependency>
150 <groupId>org.apache.hyracks</groupId>
151 <artifactId>hyracks-nc-service</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400152 <version>${project.version}</version>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700153 </dependency>
154 <dependency>
Michael Blowe97dbe52016-08-06 13:36:14 -0400155 <groupId>org.apache.httpcomponents</groupId>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800156 <artifactId>httpcore</artifactId>
157 </dependency>
158 <dependency>
159 <groupId>org.apache.httpcomponents</groupId>
Michael Blowe97dbe52016-08-06 13:36:14 -0400160 <artifactId>httpclient</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400161 </dependency>
162 <dependency>
163 <groupId>junit</groupId>
164 <artifactId>junit</artifactId>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700165 <scope>test</scope>
166 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400167 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400168 <groupId>org.apache.commons</groupId>
169 <artifactId>commons-lang3</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400170 </dependency>
171 <dependency>
172 <groupId>org.apache.hyracks</groupId>
173 <artifactId>hyracks-control-nc</artifactId>
174 <version>${project.version}</version>
175 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800176 <dependency>
177 <groupId>com.fasterxml.jackson.core</groupId>
178 <artifactId>jackson-databind</artifactId>
179 </dependency>
vinayakb0c860392012-10-06 18:47:20 +0000180 </dependencies>
181</project>