blob: fcc2d2debab58133ee82bf1a2c399a1c8b8ce6da [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>
Chris Hillery5ba58de2016-05-09 19:44:06 -070068 </configuration>
69 <executions>
70 <execution>
71 <goals>
72 <goal>integration-test</goal>
73 <goal>verify</goal>
74 </goals>
75 </execution>
76 </executions>
77 </plugin>
78
79 <plugin>
vinayakb0c860392012-10-06 18:47:20 +000080 <groupId>org.codehaus.mojo</groupId>
81 <artifactId>appassembler-maven-plugin</artifactId>
82 <executions>
83 <execution>
84 <configuration>
85 <programs>
86 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070087 <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass>
vinayakb0c860392012-10-06 18:47:20 +000088 <name>hyrackscc</name>
89 </program>
90 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070091 <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass>
vinayakb0c860392012-10-06 18:47:20 +000092 <name>hyracksnc</name>
93 </program>
94 <program>
Chris Hillery5ba58de2016-05-09 19:44:06 -070095 <mainClass>org.apache.hyracks.control.nc.service.NCService</mainClass>
96 <name>hyracksncservice</name>
97 </program>
vinayakb0c860392012-10-06 18:47:20 +000098 </programs>
99 <repositoryLayout>flat</repositoryLayout>
100 <repositoryName>lib</repositoryName>
101 </configuration>
102 <phase>package</phase>
103 <goals>
104 <goal>assemble</goal>
105 </goals>
106 </execution>
107 </executions>
108 </plugin>
109 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-deploy-plugin</artifactId>
112 <configuration>
113 <skip>true</skip>
114 </configuration>
vinayakb0c860392012-10-06 18:47:20 +0000115 </plugin>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700116 <plugin>
117 <artifactId>maven-antrun-plugin</artifactId>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700118 <executions>
119 <execution>
120 <id>process-test-classes</id>
121 <phase>package</phase>
122 <configuration>
123 <target>
124 <chmod file="target/appassembler/bin/*" perm="755" />
125 </target>
126 </configuration>
127 <goals>
128 <goal>run</goal>
129 </goals>
130 </execution>
131 </executions>
132 </plugin>
vinayakb0c860392012-10-06 18:47:20 +0000133 </plugins>
134 </build>
135 <dependencies>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700136 <dependency>
137 <groupId>org.apache.hyracks</groupId>
138 <artifactId>hyracks-control-cc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400139 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700140 </dependency>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700141 <dependency>
142 <groupId>org.apache.hyracks</groupId>
143 <artifactId>hyracks-nc-service</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400144 <version>${project.version}</version>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700145 </dependency>
146 <dependency>
Ian Maxonab369482017-12-10 18:15:15 -0800147 <groupId>org.apache.hyracks</groupId>
148 <artifactId>hyracks-util</artifactId>
149 <version>${project.version}</version>
150 </dependency>
151 <dependency>
Michael Blowe97dbe52016-08-06 13:36:14 -0400152 <groupId>org.apache.httpcomponents</groupId>
Till Westmann55dd6ff2017-02-19 20:18:51 -0800153 <artifactId>httpcore</artifactId>
154 </dependency>
155 <dependency>
156 <groupId>org.apache.httpcomponents</groupId>
Michael Blowe97dbe52016-08-06 13:36:14 -0400157 <artifactId>httpclient</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400158 </dependency>
159 <dependency>
160 <groupId>junit</groupId>
161 <artifactId>junit</artifactId>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700162 <scope>test</scope>
163 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400164 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400165 <groupId>org.apache.hyracks</groupId>
166 <artifactId>hyracks-control-nc</artifactId>
167 <version>${project.version}</version>
168 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800169 <dependency>
170 <groupId>com.fasterxml.jackson.core</groupId>
171 <artifactId>jackson-databind</artifactId>
172 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300173 <dependency>
174 <groupId>org.apache.logging.log4j</groupId>
175 <artifactId>log4j-api</artifactId>
176 </dependency>
vinayakb0c860392012-10-06 18:47:20 +0000177 </dependencies>
178</project>