blob: 8abb841c64d73e3abfb388adee86cc709604dda6 [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>
Ian Maxonbf0abd42024-03-05 11:26:12 -080027 <version>0.3.8.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>
Michael Blow84edbf62023-10-23 18:16:53 -040051 <usedDependency>org.apache.hyracks:hyracks-control-cc</usedDependency>
52 <usedDependency>org.apache.hyracks:hyracks-nc-service</usedDependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -050053 </usedDependencies>
Michael Blowba358122016-10-13 19:56:03 -040054 </configuration>
55 <executions>
56 <execution>
57 <phase>process-test-classes</phase>
58 <goals>
59 <goal>analyze-only</goal>
60 </goals>
61 </execution>
62 </executions>
63 </plugin>
64 <plugin>
vinayakb0c860392012-10-06 18:47:20 +000065 <groupId>org.codehaus.mojo</groupId>
66 <artifactId>appassembler-maven-plugin</artifactId>
67 <executions>
68 <execution>
69 <configuration>
70 <programs>
71 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070072 <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass>
vinayakb0c860392012-10-06 18:47:20 +000073 <name>hyrackscc</name>
74 </program>
75 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070076 <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass>
vinayakb0c860392012-10-06 18:47:20 +000077 <name>hyracksnc</name>
78 </program>
79 <program>
Chris Hillery5ba58de2016-05-09 19:44:06 -070080 <mainClass>org.apache.hyracks.control.nc.service.NCService</mainClass>
81 <name>hyracksncservice</name>
82 </program>
vinayakb0c860392012-10-06 18:47:20 +000083 </programs>
84 <repositoryLayout>flat</repositoryLayout>
85 <repositoryName>lib</repositoryName>
86 </configuration>
87 <phase>package</phase>
88 <goals>
89 <goal>assemble</goal>
90 </goals>
91 </execution>
92 </executions>
93 </plugin>
94 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -070095 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-deploy-plugin</artifactId>
97 <configuration>
98 <skip>true</skip>
99 </configuration>
vinayakb0c860392012-10-06 18:47:20 +0000100 </plugin>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700101 <plugin>
102 <artifactId>maven-antrun-plugin</artifactId>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700103 <executions>
104 <execution>
105 <id>process-test-classes</id>
106 <phase>package</phase>
107 <configuration>
108 <target>
109 <chmod file="target/appassembler/bin/*" perm="755" />
110 </target>
111 </configuration>
112 <goals>
113 <goal>run</goal>
114 </goals>
115 </execution>
116 </executions>
117 </plugin>
vinayakb0c860392012-10-06 18:47:20 +0000118 </plugins>
119 </build>
120 <dependencies>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700121 <dependency>
122 <groupId>org.apache.hyracks</groupId>
123 <artifactId>hyracks-control-cc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400124 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700125 </dependency>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700126 <dependency>
127 <groupId>org.apache.hyracks</groupId>
128 <artifactId>hyracks-nc-service</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400129 <version>${project.version}</version>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700130 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400131 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400132 <groupId>org.apache.hyracks</groupId>
133 <artifactId>hyracks-control-nc</artifactId>
134 <version>${project.version}</version>
135 </dependency>
vinayakb0c860392012-10-06 18:47:20 +0000136 </dependencies>
137</project>