blob: a5323664c60c79183812194623d92dfd33dfaaef [file] [log] [blame]
Ian Maxond8857792015-09-11 14:19:53 -07001<!--
2 ! 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.
18 !-->
Vinayak Borkar9c832002013-12-11 12:08:57 -080019<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">
Michael Blowb4c1fb02016-05-09 15:41:00 -070020 <modelVersion>4.0.0</modelVersion>
21 <artifactId>hyracks-client</artifactId>
22 <name>hyracks-client</name>
23 <parent>
24 <groupId>org.apache.hyracks</groupId>
25 <artifactId>hyracks</artifactId>
26 <version>0.2.18-SNAPSHOT</version>
27 </parent>
buyingyi55df5212013-03-24 07:20:08 +000028
Iane82f8112014-11-19 12:31:18 -080029 <licenses>
30 <license>
31 <name>Apache License, Version 2.0</name>
32 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
33 <distribution>repo</distribution>
34 <comments>A business-friendly OSS license</comments>
35 </license>
36 </licenses>
37
Ian Maxon9e37c962015-11-25 07:38:37 -080038 <properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070039 <root.dir>${basedir}/../..</root.dir>
Ian Maxon9e37c962015-11-25 07:38:37 -080040 </properties>
41
Michael Blowb4c1fb02016-05-09 15:41:00 -070042 <build>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-clean-plugin</artifactId>
47 <version>2.5</version>
48 <configuration>
49 <filesets>
50 <fileset>
51 <directory>.</directory>
52 <includes>
53 <include>teststore*</include>
54 <include>edu*</include>
55 <include>actual*</include>
56 <include>build*</include>
57 <include>expect*</include>
58 <include>ClusterController*</include>
59 <include>edu.uci.*</include>
60 <include>dev*</include>
61 </includes>
62 </fileset>
63 </filesets>
64 </configuration>
65 </plugin>
66 </plugins>
67 </build>
68 <dependencies>
69 <dependency>
70 <groupId>org.apache.hyracks</groupId>
71 <artifactId>hyracks-api</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040072 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070073 </dependency>
74 <dependency>
75 <groupId>org.apache.hyracks</groupId>
76 <artifactId>hyracks-net</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040077 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070078 </dependency>
79 <dependency>
80 <groupId>org.apache.hyracks</groupId>
81 <artifactId>hyracks-comm</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040082 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070083 </dependency>
84 <dependency>
85 <groupId>org.apache.hyracks</groupId>
Michael Blowba358122016-10-13 19:56:03 -040086 <artifactId>hyracks-ipc</artifactId>
87 <version>${project.version}</version>
88 </dependency>
89 <dependency>
90 <groupId>org.apache.hyracks</groupId>
91 <artifactId>hyracks-control-common</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040092 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070093 </dependency>
94 <dependency>
95 <groupId>org.apache.hyracks</groupId>
96 <artifactId>hyracks-control-cc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040097 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070098 </dependency>
99 <dependency>
100 <groupId>org.apache.hyracks</groupId>
101 <artifactId>hyracks-control-nc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400102 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700103 </dependency>
104 <dependency>
Michael Blow2da62dc2016-06-30 21:18:37 -0400105 <groupId>junit</groupId>
106 <artifactId>junit</artifactId>
107 <scope>test</scope>
108 </dependency>
Ian Maxond49bc6e2017-01-05 18:50:57 -0800109 <dependency>
110 <groupId>com.fasterxml.jackson.core</groupId>
111 <artifactId>jackson-databind</artifactId>
112 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700113 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000114</project>