blob: 4fa349d1ad84723c1f9d8b6be7667d9a8920002a [file] [log] [blame]
buyingyi7f356c12012-10-07 00:23:17 +00001<?xml version="1.0"?>
Till Westmann276bbc22013-06-05 18:56:27 -07002<!--
3 ! Copyright 2009-2013 by The Regents of the University of California
4 ! Licensed under the Apache License, Version 2.0 (the "License");
5 ! you may not use this file except in compliance with the License.
6 ! you may obtain a copy of the License from
7 !
8 ! http://www.apache.org/licenses/LICENSE-2.0
9 !
10 ! Unless required by applicable law or agreed to in writing, software
11 ! distributed under the License is distributed on an "AS IS" BASIS,
12 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ! See the License for the specific language governing permissions and
14 ! limitations under the License.
15 !-->
vinayakb4a6309b2012-10-29 15:44:02 +000016<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/xsd/maven-4.0.0.xsd">
buyingyi7f356c12012-10-07 00:23:17 +000017 <modelVersion>4.0.0</modelVersion>
18 <artifactId>pregelix-api</artifactId>
19 <name>pregelix-api</name>
20
21 <parent>
buyingyie7752502012-10-08 00:35:31 +000022 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000023 <artifactId>pregelix</artifactId>
Ian Maxon1f30d4e2014-09-19 15:58:43 -070024 <version>0.2.13</version>
buyingyi7f356c12012-10-07 00:23:17 +000025 </parent>
26
27 <properties>
28 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
29 </properties>
30
31 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.maven.plugins</groupId>
35 <artifactId>maven-compiler-plugin</artifactId>
36 <version>2.0.2</version>
37 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000038 <source>1.7</source>
39 <target>1.7</target>
40 <fork>true</fork>
buyingyi7f356c12012-10-07 00:23:17 +000041 </configuration>
42 </plugin>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
vinayakb4df31102013-04-06 18:28:48 +000045 <artifactId>maven-clean-plugin</artifactId>
46 <version>2.4.1</version>
47 <configuration>
buyingyi7f356c12012-10-07 00:23:17 +000048 <filesets>
49 <fileset>
50 <directory>.</directory>
51 <includes>
52 <include>teststore*</include>
53 <include>edu*</include>
54 <include>actual*</include>
55 <include>build*</include>
56 <include>expect*</include>
57 <include>ClusterController*</include>
58 <include>edu.uci.*</include>
59 </includes>
60 </fileset>
61 </filesets>
62 </configuration>
63 </plugin>
64 </plugins>
65 </build>
66
67 <dependencies>
68 <dependency>
69 <groupId>edu.uci.ics.hyracks</groupId>
70 <artifactId>hyracks-dataflow-common</artifactId>
Ian Maxon1f30d4e2014-09-19 15:58:43 -070071 <version>0.2.13</version>
buyingyi7f356c12012-10-07 00:23:17 +000072 <type>jar</type>
73 <scope>compile</scope>
74 </dependency>
75 <dependency>
buyingyi55df5212013-03-24 07:20:08 +000076 <groupId>edu.uci.ics.hyracks</groupId>
77 <artifactId>hyracks-hdfs-core</artifactId>
Ian Maxon1f30d4e2014-09-19 15:58:43 -070078 <version>0.2.13</version>
buyingyi55df5212013-03-24 07:20:08 +000079 <type>jar</type>
80 <scope>compile</scope>
81 </dependency>
buyingyi7f356c12012-10-07 00:23:17 +000082 </dependencies>
83</project>