blob: ac9c1e193f89a15a45847014642797978307cb33 [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 Jenkins93b46c82017-04-13 15:00:24 -070027 <version>0.3.2-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>
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>
vinayakb0c860392012-10-06 18:47:20 +000088 <groupId>org.codehaus.mojo</groupId>
89 <artifactId>appassembler-maven-plugin</artifactId>
90 <executions>
91 <execution>
92 <configuration>
93 <programs>
94 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070095 <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass>
vinayakb0c860392012-10-06 18:47:20 +000096 <name>hyrackscc</name>
97 </program>
98 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070099 <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass>
vinayakb0c860392012-10-06 18:47:20 +0000100 <name>hyracksnc</name>
101 </program>
102 <program>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700103 <mainClass>org.apache.hyracks.control.nc.service.NCService</mainClass>
104 <name>hyracksncservice</name>
105 </program>
vinayakb0c860392012-10-06 18:47:20 +0000106 </programs>
107 <repositoryLayout>flat</repositoryLayout>
108 <repositoryName>lib</repositoryName>
109 </configuration>
110 <phase>package</phase>
111 <goals>
112 <goal>assemble</goal>
113 </goals>
114 </execution>
115 </executions>
116 </plugin>
117 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700118 <groupId>org.apache.maven.plugins</groupId>
119 <artifactId>maven-deploy-plugin</artifactId>
120 <configuration>
121 <skip>true</skip>
122 </configuration>
vinayakb0c860392012-10-06 18:47:20 +0000123 </plugin>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700124 <plugin>
125 <artifactId>maven-antrun-plugin</artifactId>
126 <version>1.6</version>
127 <executions>
128 <execution>
129 <id>process-test-classes</id>
130 <phase>package</phase>
131 <configuration>
132 <target>
133 <chmod file="target/appassembler/bin/*" perm="755" />
134 </target>
135 </configuration>
136 <goals>
137 <goal>run</goal>
138 </goals>
139 </execution>
140 </executions>
141 </plugin>
vinayakb0c860392012-10-06 18:47:20 +0000142 </plugins>
143 </build>
144 <dependencies>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700145 <dependency>
146 <groupId>org.apache.hyracks</groupId>
147 <artifactId>hyracks-control-cc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400148 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700149 </dependency>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700150 <dependency>
151 <groupId>org.apache.hyracks</groupId>
152 <artifactId>hyracks-nc-service</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400153 <version>${project.version}</version>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700154 </dependency>
155 <dependency>
Michael Blowe97dbe52016-08-06 13:36:14 -0400156 <groupId>org.apache.httpcomponents</groupId>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800157 <artifactId>httpcore</artifactId>
158 </dependency>
159 <dependency>
160 <groupId>org.apache.httpcomponents</groupId>
Michael Blowe97dbe52016-08-06 13:36:14 -0400161 <artifactId>httpclient</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400162 </dependency>
163 <dependency>
164 <groupId>junit</groupId>
165 <artifactId>junit</artifactId>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700166 <scope>test</scope>
167 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400168 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400169 <groupId>org.apache.commons</groupId>
170 <artifactId>commons-lang3</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400171 </dependency>
172 <dependency>
173 <groupId>org.apache.hyracks</groupId>
174 <artifactId>hyracks-control-nc</artifactId>
175 <version>${project.version}</version>
176 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800177 <dependency>
178 <groupId>com.fasterxml.jackson.core</groupId>
179 <artifactId>jackson-databind</artifactId>
180 </dependency>
vinayakb0c860392012-10-06 18:47:20 +0000181 </dependencies>
182</project>