blob: 30972cc1bfbde7ca460d4e6e22d09301a4b3b12e [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">
Yingyi Buccd6c9d2013-11-13 10:02:21 -080020 <modelVersion>4.0.0</modelVersion>
21 <artifactId>hyracks-client</artifactId>
22 <name>hyracks-client</name>
23 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070024 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080025 <artifactId>hyracks</artifactId>
Ian Maxon3945f242016-02-10 14:55:31 -080026 <version>0.2.17-incubating</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080027 </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>
39 <root.dir>${basedir}/../..</root.dir>
40 </properties>
41
Yingyi Buccd6c9d2013-11-13 10:02:21 -080042 <build>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-compiler-plugin</artifactId>
47 <version>2.0.2</version>
48 <configuration>
49 <source>1.7</source>
50 <target>1.7</target>
51 </configuration>
52 </plugin>
53 <plugin>
54 <groupId>org.apache.maven.plugins</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080055 <artifactId>maven-clean-plugin</artifactId>
56 <version>2.5</version>
57 <configuration>
58 <filesets>
59 <fileset>
60 <directory>.</directory>
61 <includes>
62 <include>teststore*</include>
63 <include>edu*</include>
64 <include>actual*</include>
65 <include>build*</include>
66 <include>expect*</include>
67 <include>ClusterController*</include>
68 <include>edu.uci.*</include>
69 <include>dev*</include>
70 </includes>
71 </fileset>
72 </filesets>
73 </configuration>
74 </plugin>
75 </plugins>
76 </build>
77 <dependencies>
78 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070079 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080080 <artifactId>hyracks-api</artifactId>
Ian Maxon3945f242016-02-10 14:55:31 -080081 <version>0.2.17-incubating</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080082 </dependency>
83 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070084 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080085 <artifactId>hyracks-net</artifactId>
Ian Maxon3945f242016-02-10 14:55:31 -080086 <version>0.2.17-incubating</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080087 </dependency>
88 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070089 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080090 <artifactId>hyracks-comm</artifactId>
Ian Maxon3945f242016-02-10 14:55:31 -080091 <version>0.2.17-incubating</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080092 </dependency>
93 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070094 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080095 <artifactId>hyracks-dataflow-common</artifactId>
Ian Maxon3945f242016-02-10 14:55:31 -080096 <version>0.2.17-incubating</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080097 </dependency>
98 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070099 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -0800100 <artifactId>hyracks-control-cc</artifactId>
Ian Maxon3945f242016-02-10 14:55:31 -0800101 <version>0.2.17-incubating</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -0800102 </dependency>
103 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700104 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -0800105 <artifactId>hyracks-control-nc</artifactId>
Ian Maxon3945f242016-02-10 14:55:31 -0800106 <version>0.2.17-incubating</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -0800107 </dependency>
108 <dependency>
109 <groupId>com.googlecode.json-simple</groupId>
110 <artifactId>json-simple</artifactId>
111 <version>1.1</version>
112 </dependency>
Yingyi Buccd6c9d2013-11-13 10:02:21 -0800113 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000114</project>