blob: 42a29feaa950693d484f58ec03fffbe98e77065f [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>
Michael Blowba358122016-10-13 19:56:03 -040048 <configuration>
Michael Blow4c7b5bf2017-03-06 21:55:58 -050049 <usedDependencies combine.children="append">
50 <usedDependency>org.apache.hyracks:hyracks-control-nc</usedDependency>
51 </usedDependencies>
Michael Blowba358122016-10-13 19:56:03 -040052 </configuration>
53 <executions>
54 <execution>
55 <phase>process-test-classes</phase>
56 <goals>
57 <goal>analyze-only</goal>
58 </goals>
59 </execution>
60 </executions>
61 </plugin>
62 <plugin>
63 <groupId>org.apache.maven.plugins</groupId>
Chris Hillery5ba58de2016-05-09 19:44:06 -070064 <artifactId>maven-failsafe-plugin</artifactId>
Chris Hillery5ba58de2016-05-09 19:44:06 -070065 <configuration>
66 <runOrder>alphabetical</runOrder>
67 <forkMode>pertest</forkMode>
68 <systemProperties>
69 <property>
70 <name>java.util.logging.config.file</name>
71 <value>src/test/resources/logging.properties</value>
72 </property>
73 </systemProperties>
74 </configuration>
75 <executions>
76 <execution>
77 <goals>
78 <goal>integration-test</goal>
79 <goal>verify</goal>
80 </goals>
81 </execution>
82 </executions>
83 </plugin>
84
85 <plugin>
vinayakb0c860392012-10-06 18:47:20 +000086 <groupId>org.codehaus.mojo</groupId>
87 <artifactId>appassembler-maven-plugin</artifactId>
88 <executions>
89 <execution>
90 <configuration>
91 <programs>
92 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070093 <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass>
vinayakb0c860392012-10-06 18:47:20 +000094 <name>hyrackscc</name>
95 </program>
96 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070097 <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass>
vinayakb0c860392012-10-06 18:47:20 +000098 <name>hyracksnc</name>
99 </program>
100 <program>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700101 <mainClass>org.apache.hyracks.control.nc.service.NCService</mainClass>
102 <name>hyracksncservice</name>
103 </program>
vinayakb0c860392012-10-06 18:47:20 +0000104 </programs>
105 <repositoryLayout>flat</repositoryLayout>
106 <repositoryName>lib</repositoryName>
107 </configuration>
108 <phase>package</phase>
109 <goals>
110 <goal>assemble</goal>
111 </goals>
112 </execution>
113 </executions>
114 </plugin>
115 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700116 <groupId>org.apache.maven.plugins</groupId>
117 <artifactId>maven-deploy-plugin</artifactId>
118 <configuration>
119 <skip>true</skip>
120 </configuration>
vinayakb0c860392012-10-06 18:47:20 +0000121 </plugin>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700122 <plugin>
123 <artifactId>maven-antrun-plugin</artifactId>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700124 <executions>
125 <execution>
126 <id>process-test-classes</id>
127 <phase>package</phase>
128 <configuration>
129 <target>
130 <chmod file="target/appassembler/bin/*" perm="755" />
131 </target>
132 </configuration>
133 <goals>
134 <goal>run</goal>
135 </goals>
136 </execution>
137 </executions>
138 </plugin>
vinayakb0c860392012-10-06 18:47:20 +0000139 </plugins>
140 </build>
141 <dependencies>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700142 <dependency>
143 <groupId>org.apache.hyracks</groupId>
144 <artifactId>hyracks-control-cc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400145 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700146 </dependency>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700147 <dependency>
148 <groupId>org.apache.hyracks</groupId>
149 <artifactId>hyracks-nc-service</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400150 <version>${project.version}</version>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700151 </dependency>
152 <dependency>
Ian Maxonab369482017-12-10 18:15:15 -0800153 <groupId>org.apache.hyracks</groupId>
154 <artifactId>hyracks-util</artifactId>
155 <version>${project.version}</version>
156 </dependency>
157 <dependency>
Michael Blowe97dbe52016-08-06 13:36:14 -0400158 <groupId>org.apache.httpcomponents</groupId>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800159 <artifactId>httpcore</artifactId>
160 </dependency>
161 <dependency>
162 <groupId>org.apache.httpcomponents</groupId>
Michael Blowe97dbe52016-08-06 13:36:14 -0400163 <artifactId>httpclient</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400164 </dependency>
165 <dependency>
166 <groupId>junit</groupId>
167 <artifactId>junit</artifactId>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700168 <scope>test</scope>
169 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400170 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400171 <groupId>org.apache.hyracks</groupId>
172 <artifactId>hyracks-control-nc</artifactId>
173 <version>${project.version}</version>
174 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800175 <dependency>
176 <groupId>com.fasterxml.jackson.core</groupId>
177 <artifactId>jackson-databind</artifactId>
178 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300179 <dependency>
180 <groupId>org.apache.logging.log4j</groupId>
181 <artifactId>log4j-api</artifactId>
182 </dependency>
vinayakb0c860392012-10-06 18:47:20 +0000183 </dependencies>
184</project>