blob: 8b598709e5e0aea48e5510bec30fc35789acc868 [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 Jenkins0948b242017-11-20 15:56:08 -080027 <version>0.3.4-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 Blow2530e392018-02-06 01:19:42 -050047 <artifactId>maven-jar-plugin</artifactId>
48 <executions>
49 <execution>
50 <goals>
51 <goal>test-jar</goal>
52 </goals>
53 </execution>
54 </executions>
55 </plugin>
56 <plugin>
57 <groupId>org.apache.maven.plugins</groupId>
Michael Blowba358122016-10-13 19:56:03 -040058 <artifactId>maven-dependency-plugin</artifactId>
Michael Blowba358122016-10-13 19:56:03 -040059 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -050060 <usedDependencies combine.children="append">
61 <usedDependency>org.apache.hyracks:hyracks-control-nc</usedDependency>
62 </usedDependencies>
Michael Blowba358122016-10-13 19:56:03 -040063 </configuration>
64 <executions>
65 <execution>
66 <phase>process-test-classes</phase>
67 <goals>
68 <goal>analyze-only</goal>
69 </goals>
70 </execution>
71 </executions>
72 </plugin>
73 <plugin>
74 <groupId>org.apache.maven.plugins</groupId>
Chris Hillery5ba58de2016-05-09 19:44:06 -070075 <artifactId>maven-failsafe-plugin</artifactId>
Chris Hillery5ba58de2016-05-09 19:44:06 -070076 <configuration>
77 <runOrder>alphabetical</runOrder>
78 <forkMode>pertest</forkMode>
Chris Hillery5ba58de2016-05-09 19:44:06 -070079 </configuration>
80 <executions>
81 <execution>
82 <goals>
83 <goal>integration-test</goal>
84 <goal>verify</goal>
85 </goals>
86 </execution>
87 </executions>
88 </plugin>
89
90 <plugin>
vinayakb0c860392012-10-06 18:47:20 +000091 <groupId>org.codehaus.mojo</groupId>
92 <artifactId>appassembler-maven-plugin</artifactId>
93 <executions>
94 <execution>
95 <configuration>
96 <programs>
97 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070098 <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass>
vinayakb0c860392012-10-06 18:47:20 +000099 <name>hyrackscc</name>
100 </program>
101 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -0700102 <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass>
vinayakb0c860392012-10-06 18:47:20 +0000103 <name>hyracksnc</name>
104 </program>
105 <program>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700106 <mainClass>org.apache.hyracks.control.nc.service.NCService</mainClass>
107 <name>hyracksncservice</name>
108 </program>
vinayakb0c860392012-10-06 18:47:20 +0000109 </programs>
110 <repositoryLayout>flat</repositoryLayout>
111 <repositoryName>lib</repositoryName>
112 </configuration>
113 <phase>package</phase>
114 <goals>
115 <goal>assemble</goal>
116 </goals>
117 </execution>
118 </executions>
119 </plugin>
120 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700121 <groupId>org.apache.maven.plugins</groupId>
122 <artifactId>maven-deploy-plugin</artifactId>
123 <configuration>
124 <skip>true</skip>
125 </configuration>
vinayakb0c860392012-10-06 18:47:20 +0000126 </plugin>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700127 <plugin>
128 <artifactId>maven-antrun-plugin</artifactId>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700129 <executions>
130 <execution>
131 <id>process-test-classes</id>
132 <phase>package</phase>
133 <configuration>
134 <target>
135 <chmod file="target/appassembler/bin/*" perm="755" />
136 </target>
137 </configuration>
138 <goals>
139 <goal>run</goal>
140 </goals>
141 </execution>
142 </executions>
143 </plugin>
vinayakb0c860392012-10-06 18:47:20 +0000144 </plugins>
145 </build>
146 <dependencies>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700147 <dependency>
148 <groupId>org.apache.hyracks</groupId>
149 <artifactId>hyracks-control-cc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400150 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700151 </dependency>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700152 <dependency>
153 <groupId>org.apache.hyracks</groupId>
154 <artifactId>hyracks-nc-service</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400155 <version>${project.version}</version>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700156 </dependency>
157 <dependency>
Ian Maxonab369482017-12-10 18:15:15 -0800158 <groupId>org.apache.hyracks</groupId>
159 <artifactId>hyracks-util</artifactId>
160 <version>${project.version}</version>
161 </dependency>
162 <dependency>
Michael Blowe97dbe52016-08-06 13:36:14 -0400163 <groupId>org.apache.httpcomponents</groupId>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800164 <artifactId>httpcore</artifactId>
165 </dependency>
166 <dependency>
167 <groupId>org.apache.httpcomponents</groupId>
Michael Blowe97dbe52016-08-06 13:36:14 -0400168 <artifactId>httpclient</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400169 </dependency>
170 <dependency>
171 <groupId>junit</groupId>
172 <artifactId>junit</artifactId>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700173 <scope>test</scope>
174 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400175 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400176 <groupId>org.apache.hyracks</groupId>
177 <artifactId>hyracks-control-nc</artifactId>
178 <version>${project.version}</version>
179 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800180 <dependency>
181 <groupId>com.fasterxml.jackson.core</groupId>
182 <artifactId>jackson-databind</artifactId>
183 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300184 <dependency>
185 <groupId>org.apache.logging.log4j</groupId>
186 <artifactId>log4j-api</artifactId>
187 </dependency>
vinayakb0c860392012-10-06 18:47:20 +0000188 </dependencies>
189</project>