blob: f5d82b1c5afc2655495d8f45936c02748befc6f4 [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>
15 <groupId>edu.uci.ics.hyracks</groupId>
16 <artifactId>hyracks</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080017 <version>0.2.11-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080018 </parent>
buyingyi55df5212013-03-24 07:20:08 +000019
Yingyi Buccd6c9d2013-11-13 10:02:21 -080020 <build>
21 <plugins>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-compiler-plugin</artifactId>
25 <version>2.0.2</version>
26 <configuration>
27 <source>1.7</source>
28 <target>1.7</target>
29 </configuration>
30 </plugin>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080033 <artifactId>maven-clean-plugin</artifactId>
34 <version>2.5</version>
35 <configuration>
36 <filesets>
37 <fileset>
38 <directory>.</directory>
39 <includes>
40 <include>teststore*</include>
41 <include>edu*</include>
42 <include>actual*</include>
43 <include>build*</include>
44 <include>expect*</include>
45 <include>ClusterController*</include>
46 <include>edu.uci.*</include>
47 <include>dev*</include>
48 </includes>
49 </fileset>
50 </filesets>
51 </configuration>
52 </plugin>
53 </plugins>
54 </build>
55 <dependencies>
56 <dependency>
57 <groupId>edu.uci.ics.hyracks</groupId>
58 <artifactId>hyracks-api</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080059 <version>0.2.11-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080060 </dependency>
61 <dependency>
62 <groupId>edu.uci.ics.hyracks</groupId>
63 <artifactId>hyracks-net</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080064 <version>0.2.11-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080065 </dependency>
66 <dependency>
67 <groupId>edu.uci.ics.hyracks</groupId>
68 <artifactId>hyracks-comm</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080069 <version>0.2.11-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080070 </dependency>
71 <dependency>
72 <groupId>edu.uci.ics.hyracks</groupId>
73 <artifactId>hyracks-dataflow-common</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080074 <version>0.2.11-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080075 </dependency>
76 <dependency>
77 <groupId>edu.uci.ics.hyracks</groupId>
78 <artifactId>hyracks-control-cc</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080079 <version>0.2.11-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080080 </dependency>
81 <dependency>
82 <groupId>edu.uci.ics.hyracks</groupId>
83 <artifactId>hyracks-control-nc</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080084 <version>0.2.11-SNAPSHOT</version>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080085 </dependency>
86 <dependency>
87 <groupId>com.googlecode.json-simple</groupId>
88 <artifactId>json-simple</artifactId>
89 <version>1.1</version>
90 </dependency>
Yingyi Buccd6c9d2013-11-13 10:02:21 -080091 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +000092</project>