blob: 8212e1ceed9e8f0101044c3f34c84411f87007d3 [file] [log] [blame]
buyingyi7f356c12012-10-07 00:23:17 +00001<?xml version="1.0"?>
vinayakb4a6309b2012-10-29 15:44:02 +00002<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 +00003 <modelVersion>4.0.0</modelVersion>
4 <artifactId>pregelix-api</artifactId>
5 <name>pregelix-api</name>
6
7 <parent>
buyingyie7752502012-10-08 00:35:31 +00008 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +00009 <artifactId>pregelix</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000010 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000011 </parent>
12
13 <properties>
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15 </properties>
16
17 <build>
18 <plugins>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-compiler-plugin</artifactId>
22 <version>2.0.2</version>
23 <configuration>
madhusudancs@gmail.coma5ed5152013-02-26 04:44:07 +000024 <source>1.7</source>
25 <target>1.7</target>
madhusudancs@gmail.comcaf08332013-03-15 08:26:56 +000026 <fork>true</fork>
buyingyi7f356c12012-10-07 00:23:17 +000027 </configuration>
28 </plugin>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000031 <artifactId>maven-surefire-plugin</artifactId>
32 <version>2.7.2</version>
33 <configuration>
34 <forkMode>pertest</forkMode>
buyingyi1188fd92012-10-22 05:14:34 +000035 <argLine>-enableassertions -Xmx512m -Dfile.encoding=UTF-8
buyingyi7f356c12012-10-07 00:23:17 +000036 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
37 <includes>
38 <include>**/*TestSuite.java</include>
39 <include>**/*Test.java</include>
40 </includes>
41 </configuration>
42 </plugin>
43 <plugin>
44 <artifactId>maven-clean-plugin</artifactId>
madhusudancs@gmail.com58f50562013-02-07 12:49:37 +000045 <version>2.5</version>
buyingyi7f356c12012-10-07 00:23:17 +000046 <configuration>
47 <filesets>
48 <fileset>
49 <directory>.</directory>
50 <includes>
51 <include>teststore*</include>
52 <include>edu*</include>
53 <include>actual*</include>
54 <include>build*</include>
55 <include>expect*</include>
56 <include>ClusterController*</include>
57 <include>edu.uci.*</include>
58 </includes>
59 </fileset>
60 </filesets>
61 </configuration>
62 </plugin>
63 </plugins>
64 </build>
65
66 <dependencies>
67 <dependency>
68 <groupId>edu.uci.ics.hyracks</groupId>
69 <artifactId>hyracks-dataflow-common</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000070 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000071 <type>jar</type>
72 <scope>compile</scope>
73 </dependency>
74 <dependency>
75 <groupId>junit</groupId>
76 <artifactId>junit</artifactId>
77 <version>3.8.1</version>
78 <scope>test</scope>
79 </dependency>
80 <dependency>
madhusudancs@gmail.come5b8fab2013-02-21 20:04:21 +000081 <groupId>edu.uci.ics.hyracks</groupId>
82 <artifactId>hyracks-hdfs-core</artifactId>
83 <version>0.2.3-SNAPSHOT</version>
84 <type>jar</type>
85 <scope>compile</scope>
86 </dependency>
buyingyi7f356c12012-10-07 00:23:17 +000087 </dependencies>
88</project>