blob: 66d4d245832120fabf13173c9d9b09172f14feb3 [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 !-->
20<project xmlns="http://maven.apache.org/POM/4.0.0"
21 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <parent>
24 <artifactId>hyracks-control</artifactId>
25 <groupId>org.apache.hyracks</groupId>
26 <version>0.2.18-SNAPSHOT</version>
27 </parent>
28 <modelVersion>4.0.0</modelVersion>
29
30 <artifactId>hyracks-nc-service</artifactId>
31
32 <build>
33 <plugins>
34 <plugin>
35 <groupId>org.apache.maven.plugins</groupId>
36 <artifactId>maven-compiler-plugin</artifactId>
37 <version>2.0.2</version>
38 <configuration>
39 <source>1.7</source>
40 <target>1.7</target>
41 <fork>true</fork>
42 </configuration>
43 </plugin>
44 </plugins>
45 </build>
46
47 <dependencies>
48 <dependency>
49 <groupId>args4j</groupId>
50 <artifactId>args4j</artifactId>
51 <version>2.0.12</version>
52 <type>jar</type>
53 <scope>compile</scope>
54 </dependency>
55 <dependency>
56 <groupId>org.ini4j</groupId>
57 <artifactId>ini4j</artifactId>
58 <version>0.5.4</version>
59 </dependency>
60 <dependency>
61 <groupId>org.apache.hyracks</groupId>
62 <artifactId>hyracks-control-nc</artifactId>
63 <version>0.2.18-SNAPSHOT</version>
64 <type>jar</type>
65 <scope>compile</scope>
66 </dependency>
67 </dependencies>
68
69</project>