blob: 36575a3d97950d521dd6403bbaeb9410c46246a7 [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 Maxonb86e4392015-09-11 13:24:39 -070026 <version>0.2.16-SNAPSHOT</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
Yingyi Buccd6c9d2013-11-13 10:02:21 -080038 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-compiler-plugin</artifactId>
43 <version>2.0.2</version>
44 <configuration>
45 <source>1.7</source>
46 <target>1.7</target>
47 </configuration>
48 </plugin>
49 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080051 <artifactId>maven-clean-plugin</artifactId>
52 <version>2.5</version>
53 <configuration>
54 <filesets>
55 <fileset>
56 <directory>.</directory>
57 <includes>
58 <include>teststore*</include>
59 <include>edu*</include>
60 <include>actual*</include>
61 <include>build*</include>
62 <include>expect*</include>
63 <include>ClusterController*</include>
64 <include>edu.uci.*</include>
65 <include>dev*</include>
66 </includes>
67 </fileset>
68 </filesets>
69 </configuration>
70 </plugin>
71 </plugins>
72 </build>
73 <dependencies>
74 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070075 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080076 <artifactId>hyracks-api</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070077 <version>0.2.16-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080078 </dependency>
79 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070080 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080081 <artifactId>hyracks-net</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070082 <version>0.2.16-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080083 </dependency>
84 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070085 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080086 <artifactId>hyracks-comm</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070087 <version>0.2.16-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080088 </dependency>
89 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070090 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080091 <artifactId>hyracks-dataflow-common</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070092 <version>0.2.16-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080093 </dependency>
94 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070095 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080096 <artifactId>hyracks-control-cc</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -070097 <version>0.2.16-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080098 </dependency>
99 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700100 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -0800101 <artifactId>hyracks-control-nc</artifactId>
Ian Maxonb86e4392015-09-11 13:24:39 -0700102 <version>0.2.16-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -0800103 </dependency>
104 <dependency>
105 <groupId>com.googlecode.json-simple</groupId>
106 <artifactId>json-simple</artifactId>
107 <version>1.1</version>
108 </dependency>
Yingyi Buccd6c9d2013-11-13 10:02:21 -0800109 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000110</project>