blob: 47b31889b84d043b9b8d184316f0b20f2bf92ebe [file] [log] [blame]
Chris Hillery5ba58de2016-05-09 19:44:06 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ! Licensed to the Apache Software Foundation (ASF) under one
4 ! or more contributor license agreements. See the NOTICE file
5 ! distributed with this work for additional information
6 ! regarding copyright ownership. The ASF licenses this file
7 ! to you under the Apache License, Version 2.0 (the
8 ! "License"); you may not use this file except in compliance
9 ! with the License. You may obtain a copy of the License at
10 !
11 ! http://www.apache.org/licenses/LICENSE-2.0
12 !
13 ! Unless required by applicable law or agreed to in writing,
14 ! software distributed under the License is distributed on an
15 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ! KIND, either express or implied. See the License for the
17 ! specific language governing permissions and limitations
18 ! under the License.
19 !-->
Michael Blow380b0a22016-08-02 13:05:52 -040020<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/xsd/maven-4.0.0.xsd">
Michael Blowba358122016-10-13 19:56:03 -040021 <parent>
22 <artifactId>hyracks-control</artifactId>
23 <groupId>org.apache.hyracks</groupId>
AsterixDB Jenkins93b46c82017-04-13 15:00:24 -070024 <version>0.3.2-SNAPSHOT</version>
Michael Blowba358122016-10-13 19:56:03 -040025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27
28 <artifactId>hyracks-nc-service</artifactId>
29
Michael Blowba358122016-10-13 19:56:03 -040030 <dependencies>
31 <dependency>
32 <groupId>args4j</groupId>
33 <artifactId>args4j</artifactId>
Michael Blowba358122016-10-13 19:56:03 -040034 </dependency>
35 <dependency>
36 <groupId>org.ini4j</groupId>
37 <artifactId>ini4j</artifactId>
38 <version>0.5.4</version>
39 </dependency>
40 <dependency>
Chris Hillery5ba58de2016-05-09 19:44:06 -070041 <groupId>org.apache.hyracks</groupId>
Michael Blow4c7b5bf2017-03-06 21:55:58 -050042 <artifactId>hyracks-api</artifactId>
43 <version>${project.version}</version>
44 </dependency>
45 <dependency>
46 <groupId>org.apache.hyracks</groupId>
Michael Blowba358122016-10-13 19:56:03 -040047 <artifactId>hyracks-control-common</artifactId>
Michael Blow43b40b62017-01-14 17:03:12 -050048 <version>${project.version}</version>
Michael Blowba358122016-10-13 19:56:03 -040049 </dependency>
50 <dependency>
51 <groupId>org.apache.commons</groupId>
52 <artifactId>commons-lang3</artifactId>
Michael Blowba358122016-10-13 19:56:03 -040053 </dependency>
Yingyi Bu0aeebae2017-01-05 12:41:52 -080054 <dependency>
55 <groupId>com.e-movimento.tinytools</groupId>
56 <artifactId>privilegedaccessor</artifactId>
57 <version>1.2.2</version>
58 <scope>test</scope>
59 </dependency>
60 <dependency>
61 <groupId>junit</groupId>
62 <artifactId>junit</artifactId>
63 <scope>test</scope>
64 </dependency>
Michael Blowba358122016-10-13 19:56:03 -040065 </dependencies>
Chris Hillery5ba58de2016-05-09 19:44:06 -070066
67</project>