Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 1 | <?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 Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 20 | <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 Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame^] | 21 | <parent> |
| 22 | <artifactId>hyracks-control</artifactId> |
| 23 | <groupId>org.apache.hyracks</groupId> |
| 24 | <version>0.2.18-SNAPSHOT</version> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | |
| 28 | <artifactId>hyracks-nc-service</artifactId> |
| 29 | |
| 30 | <build> |
| 31 | <plugins> |
| 32 | <plugin> |
| 33 | <groupId>org.apache.maven.plugins</groupId> |
| 34 | <artifactId>maven-compiler-plugin</artifactId> |
| 35 | <version>2.0.2</version> |
| 36 | <configuration> |
| 37 | <source>1.7</source> |
| 38 | <target>1.7</target> |
| 39 | <fork>true</fork> |
| 40 | </configuration> |
| 41 | </plugin> |
| 42 | </plugins> |
| 43 | </build> |
| 44 | |
| 45 | <dependencies> |
| 46 | <dependency> |
| 47 | <groupId>args4j</groupId> |
| 48 | <artifactId>args4j</artifactId> |
| 49 | <version>2.0.12</version> |
| 50 | <type>jar</type> |
| 51 | <scope>compile</scope> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.ini4j</groupId> |
| 55 | <artifactId>ini4j</artifactId> |
| 56 | <version>0.5.4</version> |
| 57 | </dependency> |
| 58 | <dependency> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 59 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame^] | 60 | <artifactId>hyracks-control-common</artifactId> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 61 | <version>0.2.18-SNAPSHOT</version> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame^] | 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.apache.commons</groupId> |
| 65 | <artifactId>commons-lang3</artifactId> |
| 66 | <version>3.1</version> |
| 67 | </dependency> |
| 68 | </dependencies> |
Chris Hillery | 5ba58de | 2016-05-09 19:44:06 -0700 | [diff] [blame] | 69 | |
| 70 | </project> |