Yingyi Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 1 | <!-- ! 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 Borkar | 9c83200 | 2013-12-11 12:08:57 -0800 | [diff] [blame] | 10 | <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 Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 11 | <modelVersion>4.0.0</modelVersion> |
| 12 | <artifactId>hyracks-client</artifactId> |
| 13 | <name>hyracks-client</name> |
| 14 | <parent> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 15 | <groupId>org.apache.hyracks</groupId> |
Yingyi Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 16 | <artifactId>hyracks</artifactId> |
Ian Maxon | b86e439 | 2015-09-11 13:24:39 -0700 | [diff] [blame^] | 17 | <version>0.2.16-SNAPSHOT</version> |
Yingyi Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 18 | </parent> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 19 | |
Ian | e82f811 | 2014-11-19 12:31:18 -0800 | [diff] [blame] | 20 | <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 Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 29 | <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 Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 42 | <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 Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 66 | <groupId>org.apache.hyracks</groupId> |
Yingyi Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 67 | <artifactId>hyracks-api</artifactId> |
Ian Maxon | b86e439 | 2015-09-11 13:24:39 -0700 | [diff] [blame^] | 68 | <version>0.2.16-SNAPSHOT</version> |
Yingyi Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 69 | </dependency> |
| 70 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 71 | <groupId>org.apache.hyracks</groupId> |
Yingyi Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 72 | <artifactId>hyracks-net</artifactId> |
Ian Maxon | b86e439 | 2015-09-11 13:24:39 -0700 | [diff] [blame^] | 73 | <version>0.2.16-SNAPSHOT</version> |
Yingyi Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 74 | </dependency> |
| 75 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 76 | <groupId>org.apache.hyracks</groupId> |
Yingyi Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 77 | <artifactId>hyracks-comm</artifactId> |
Ian Maxon | b86e439 | 2015-09-11 13:24:39 -0700 | [diff] [blame^] | 78 | <version>0.2.16-SNAPSHOT</version> |
Yingyi Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 79 | </dependency> |
| 80 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 81 | <groupId>org.apache.hyracks</groupId> |
Yingyi Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 82 | <artifactId>hyracks-dataflow-common</artifactId> |
Ian Maxon | b86e439 | 2015-09-11 13:24:39 -0700 | [diff] [blame^] | 83 | <version>0.2.16-SNAPSHOT</version> |
Yingyi Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 84 | </dependency> |
| 85 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 86 | <groupId>org.apache.hyracks</groupId> |
Yingyi Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 87 | <artifactId>hyracks-control-cc</artifactId> |
Ian Maxon | b86e439 | 2015-09-11 13:24:39 -0700 | [diff] [blame^] | 88 | <version>0.2.16-SNAPSHOT</version> |
Yingyi Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 89 | </dependency> |
| 90 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 91 | <groupId>org.apache.hyracks</groupId> |
Yingyi Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 92 | <artifactId>hyracks-control-nc</artifactId> |
Ian Maxon | b86e439 | 2015-09-11 13:24:39 -0700 | [diff] [blame^] | 93 | <version>0.2.16-SNAPSHOT</version> |
Yingyi Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>com.googlecode.json-simple</groupId> |
| 97 | <artifactId>json-simple</artifactId> |
| 98 | <version>1.1</version> |
| 99 | </dependency> |
Yingyi Bu | ccd6c9d | 2013-11-13 10:02:21 -0800 | [diff] [blame] | 100 | </dependencies> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 101 | </project> |