blob: 8bbda5785766bf7081202f5d60432787d125aab9 [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 Maxon7c9a47a2017-01-18 12:17:08 -080027 <version>0.3.0</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>
50 <failOnWarning>true</failOnWarning>
51 <outputXML>true</outputXML>
52 <usedDependencies>org.apache.hyracks:hyracks-control-nc</usedDependencies>
53 </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>
buyingyi55df5212013-03-24 07:20:08 +000090 <version>1.3</version>
vinayakb0c860392012-10-06 18:47:20 +000091 <executions>
92 <execution>
93 <configuration>
94 <programs>
95 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -070096 <mainClass>org.apache.hyracks.control.cc.CCDriver</mainClass>
vinayakb0c860392012-10-06 18:47:20 +000097 <name>hyrackscc</name>
98 </program>
99 <program>
Ian Maxone915e8c2015-07-01 17:03:31 -0700100 <mainClass>org.apache.hyracks.control.nc.NCDriver</mainClass>
vinayakb0c860392012-10-06 18:47:20 +0000101 <name>hyracksnc</name>
102 </program>
103 <program>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700104 <mainClass>org.apache.hyracks.control.nc.service.NCService</mainClass>
105 <name>hyracksncservice</name>
106 </program>
vinayakb0c860392012-10-06 18:47:20 +0000107 </programs>
108 <repositoryLayout>flat</repositoryLayout>
109 <repositoryName>lib</repositoryName>
110 </configuration>
111 <phase>package</phase>
112 <goals>
113 <goal>assemble</goal>
114 </goals>
115 </execution>
116 </executions>
117 </plugin>
118 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700119 <groupId>org.apache.maven.plugins</groupId>
120 <artifactId>maven-deploy-plugin</artifactId>
121 <configuration>
122 <skip>true</skip>
123 </configuration>
vinayakb0c860392012-10-06 18:47:20 +0000124 </plugin>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700125 <plugin>
126 <artifactId>maven-antrun-plugin</artifactId>
127 <version>1.6</version>
128 <executions>
129 <execution>
130 <id>process-test-classes</id>
131 <phase>package</phase>
132 <configuration>
133 <target>
134 <chmod file="target/appassembler/bin/*" perm="755" />
135 </target>
136 </configuration>
137 <goals>
138 <goal>run</goal>
139 </goals>
140 </execution>
141 </executions>
142 </plugin>
vinayakb0c860392012-10-06 18:47:20 +0000143 </plugins>
144 </build>
145 <dependencies>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700146 <dependency>
147 <groupId>org.apache.hyracks</groupId>
148 <artifactId>hyracks-control-cc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400149 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700150 </dependency>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700151 <dependency>
152 <groupId>org.apache.hyracks</groupId>
153 <artifactId>hyracks-nc-service</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400154 <version>${project.version}</version>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700155 </dependency>
156 <dependency>
Michael Blowe97dbe52016-08-06 13:36:14 -0400157 <groupId>org.apache.httpcomponents</groupId>
158 <artifactId>httpclient</artifactId>
159 <version>4.5.2</version>
Michael Blow2da62dc2016-06-30 21:18:37 -0400160 </dependency>
161 <dependency>
162 <groupId>junit</groupId>
163 <artifactId>junit</artifactId>
Chris Hillery5ba58de2016-05-09 19:44:06 -0700164 <scope>test</scope>
165 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400166 <dependency>
Michael Blowba358122016-10-13 19:56:03 -0400167 <groupId>org.apache.httpcomponents</groupId>
168 <artifactId>httpcore</artifactId>
Michael Blowfbccee62016-10-26 12:18:30 -0400169 <version>4.4.5</version>
Michael Blowba358122016-10-13 19:56:03 -0400170 </dependency>
171 <dependency>
172 <groupId>org.apache.commons</groupId>
173 <artifactId>commons-lang3</artifactId>
Michael Blowba358122016-10-13 19:56:03 -0400174 </dependency>
175 <dependency>
176 <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>
vinayakb0c860392012-10-06 18:47:20 +0000184 </dependencies>
185</project>