blob: a92348ad090ff242362fea6f9751dca88e80a3a7 [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>
buyingyiaeba25c2013-07-15 17:02:20 -070024 <version>0.2.9-SNAPSHOT</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>
buyingyi7f356c12012-10-07 00:23:17 +000045 <artifactId>maven-surefire-plugin</artifactId>
46 <version>2.7.2</version>
47 <configuration>
48 <forkMode>pertest</forkMode>
buyingyi1188fd92012-10-22 05:14:34 +000049 <argLine>-enableassertions -Xmx512m -Dfile.encoding=UTF-8
buyingyi7f356c12012-10-07 00:23:17 +000050 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
51 <includes>
52 <include>**/*TestSuite.java</include>
53 <include>**/*Test.java</include>
54 </includes>
55 </configuration>
56 </plugin>
57 <plugin>
vinayakb4df31102013-04-06 18:28:48 +000058 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-clean-plugin</artifactId>
60 <version>2.4.1</version>
61 <configuration>
buyingyi7f356c12012-10-07 00:23:17 +000062 <filesets>
63 <fileset>
64 <directory>.</directory>
65 <includes>
66 <include>teststore*</include>
67 <include>edu*</include>
68 <include>actual*</include>
69 <include>build*</include>
70 <include>expect*</include>
71 <include>ClusterController*</include>
72 <include>edu.uci.*</include>
73 </includes>
74 </fileset>
75 </filesets>
76 </configuration>
77 </plugin>
78 </plugins>
79 </build>
80
81 <dependencies>
82 <dependency>
83 <groupId>edu.uci.ics.hyracks</groupId>
84 <artifactId>hyracks-dataflow-common</artifactId>
buyingyiaeba25c2013-07-15 17:02:20 -070085 <version>0.2.9-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000086 <type>jar</type>
87 <scope>compile</scope>
88 </dependency>
89 <dependency>
90 <groupId>junit</groupId>
91 <artifactId>junit</artifactId>
92 <version>3.8.1</version>
93 <scope>test</scope>
94 </dependency>
95 <dependency>
buyingyi55df5212013-03-24 07:20:08 +000096 <groupId>edu.uci.ics.hyracks</groupId>
97 <artifactId>hyracks-hdfs-core</artifactId>
buyingyiaeba25c2013-07-15 17:02:20 -070098 <version>0.2.9-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000099 <type>jar</type>
100 <scope>compile</scope>
101 </dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000102 </dependencies>
103</project>