blob: f40e9a86dd1e5f025cacc17fc5d7396ab30c7d28 [file] [log] [blame]
Yingyi Buccd6c9d2013-11-13 10:02:21 -08001<!-- ! Copyright 2009-2013 by The Regents of the University of California
2 ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may
3 not use this file except in compliance with the License. ! you may obtain
4 a copy of the License from ! ! http://www.apache.org/licenses/LICENSE-2.0
5 ! ! Unless required by applicable law or agreed to in writing, software !
6 distributed under the License is distributed on an "AS IS" BASIS, ! WITHOUT
7 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! See the
8 License for the specific language governing permissions and ! limitations
9 under the License. ! -->
Vinayak Borkar9c832002013-12-11 12:08:57 -080010<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 -080011 <modelVersion>4.0.0</modelVersion>
12 <artifactId>hyracks-client</artifactId>
13 <name>hyracks-client</name>
14 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070015 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080016 <artifactId>hyracks</artifactId>
Ian Maxon97acfe52015-02-17 20:47:20 -080017 <version>0.2.16-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080018 </parent>
buyingyi55df5212013-03-24 07:20:08 +000019
Iane82f8112014-11-19 12:31:18 -080020 <licenses>
21 <license>
22 <name>Apache License, Version 2.0</name>
23 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
24 <distribution>repo</distribution>
25 <comments>A business-friendly OSS license</comments>
26 </license>
27 </licenses>
28
Yingyi Buccd6c9d2013-11-13 10:02:21 -080029 <build>
30 <plugins>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-compiler-plugin</artifactId>
34 <version>2.0.2</version>
35 <configuration>
36 <source>1.7</source>
37 <target>1.7</target>
38 </configuration>
39 </plugin>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080042 <artifactId>maven-clean-plugin</artifactId>
43 <version>2.5</version>
44 <configuration>
45 <filesets>
46 <fileset>
47 <directory>.</directory>
48 <includes>
49 <include>teststore*</include>
50 <include>edu*</include>
51 <include>actual*</include>
52 <include>build*</include>
53 <include>expect*</include>
54 <include>ClusterController*</include>
55 <include>edu.uci.*</include>
56 <include>dev*</include>
57 </includes>
58 </fileset>
59 </filesets>
60 </configuration>
61 </plugin>
62 </plugins>
63 </build>
64 <dependencies>
65 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070066 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080067 <artifactId>hyracks-api</artifactId>
Ian Maxon97acfe52015-02-17 20:47:20 -080068 <version>0.2.16-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080069 </dependency>
70 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070071 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080072 <artifactId>hyracks-net</artifactId>
Ian Maxon97acfe52015-02-17 20:47:20 -080073 <version>0.2.16-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080074 </dependency>
75 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070076 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080077 <artifactId>hyracks-comm</artifactId>
Ian Maxon97acfe52015-02-17 20:47:20 -080078 <version>0.2.16-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080079 </dependency>
80 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070081 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080082 <artifactId>hyracks-dataflow-common</artifactId>
Ian Maxon97acfe52015-02-17 20:47:20 -080083 <version>0.2.16-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080084 </dependency>
85 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070086 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080087 <artifactId>hyracks-control-cc</artifactId>
Ian Maxon97acfe52015-02-17 20:47:20 -080088 <version>0.2.16-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080089 </dependency>
90 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070091 <groupId>org.apache.hyracks</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080092 <artifactId>hyracks-control-nc</artifactId>
Ian Maxon97acfe52015-02-17 20:47:20 -080093 <version>0.2.16-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080094 </dependency>
95 <dependency>
96 <groupId>com.googlecode.json-simple</groupId>
97 <artifactId>json-simple</artifactId>
98 <version>1.1</version>
99 </dependency>
Yingyi Buccd6c9d2013-11-13 10:02:21 -0800100 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000101</project>