blob: d3f396e8d73320c99cee7b931fbc0afcd98e6964 [file] [log] [blame]
buyingyi55df5212013-03-24 07:20:08 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 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-dataflow</artifactId>
5 <packaging>jar</packaging>
6 <name>pregelix-dataflow</name>
7
8 <parent>
buyingyi55df5212013-03-24 07:20:08 +00009 <groupId>edu.uci.ics.hyracks</groupId>
10 <artifactId>pregelix</artifactId>
11 <version>0.2.3-SNAPSHOT</version>
12 </parent>
buyingyi7f356c12012-10-07 00:23:17 +000013
14
15 <properties>
16 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17 </properties>
18
19 <build>
20 <plugins>
21 <plugin>
22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-compiler-plugin</artifactId>
24 <version>2.0.2</version>
25 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000026 <source>1.7</source>
27 <target>1.7</target>
28 <fork>true</fork>
buyingyi7f356c12012-10-07 00:23:17 +000029 </configuration>
30 </plugin>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-surefire-plugin</artifactId>
34 <version>2.7.2</version>
35 <configuration>
36 <forkMode>pertest</forkMode>
buyingyi1188fd92012-10-22 05:14:34 +000037 <argLine>-enableassertions -Xmx512m -Dfile.encoding=UTF-8
buyingyi7f356c12012-10-07 00:23:17 +000038 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
39 <includes>
40 <include>**/*TestSuite.java</include>
41 <include>**/*Test.java</include>
42 </includes>
43 </configuration>
44 </plugin>
45 <plugin>
46 <artifactId>maven-clean-plugin</artifactId>
buyingyi55df5212013-03-24 07:20:08 +000047 <version>2.5</version>
buyingyi7f356c12012-10-07 00:23:17 +000048 <configuration>
49 <filesets>
50 <fileset>
51 <directory>.</directory>
52 <includes>
53 <include>teststore*</include>
54 <include>edu*</include>
55 <include>actual*</include>
56 <include>build*</include>
57 <include>expect*</include>
58 <include>ClusterController*</include>
59 </includes>
60 </fileset>
61 </filesets>
62 </configuration>
63 </plugin>
64 </plugins>
65 </build>
66
67 <dependencies>
68 <dependency>
69 <groupId>junit</groupId>
70 <artifactId>junit</artifactId>
71 <version>4.8.1</version>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
buyingyie7752502012-10-08 00:35:31 +000075 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000076 <artifactId>pregelix-api</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000077 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000078 <type>jar</type>
79 <scope>compile</scope>
80 </dependency>
81 <dependency>
buyingyie7752502012-10-08 00:35:31 +000082 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000083 <artifactId>pregelix-dataflow-std-base</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000084 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000085 <type>jar</type>
86 <scope>compile</scope>
87 </dependency>
88 <dependency>
89 <groupId>edu.uci.ics.hyracks</groupId>
90 <artifactId>hyracks-api</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000091 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000092 <type>jar</type>
93 <scope>compile</scope>
94 </dependency>
95 <dependency>
96 <groupId>edu.uci.ics.hyracks</groupId>
97 <artifactId>hyracks-dataflow-common</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000098 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000099 <type>jar</type>
100 <scope>compile</scope>
101 </dependency>
102 <dependency>
103 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000104 <artifactId>hyracks-data-std</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000105 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000106 </dependency>
107 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000108 <groupId>edu.uci.ics.hyracks</groupId>
109 <artifactId>hyracks-storage-am-common</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000110 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000111 <type>jar</type>
112 <scope>compile</scope>
113 </dependency>
114 <dependency>
115 <groupId>edu.uci.ics.hyracks</groupId>
116 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000117 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000118 <type>jar</type>
119 <scope>compile</scope>
120 </dependency>
121 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000122 <groupId>edu.uci.ics.hyracks</groupId>
123 <artifactId>hyracks-control-cc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000124 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000125 <type>jar</type>
126 <scope>compile</scope>
127 </dependency>
128 <dependency>
129 <groupId>edu.uci.ics.hyracks</groupId>
130 <artifactId>hyracks-control-nc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000131 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000132 <type>jar</type>
133 <scope>compile</scope>
134 </dependency>
135 <dependency>
136 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000137 <artifactId>hyracks-ipc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000138 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000139 <type>jar</type>
140 <scope>compile</scope>
141 </dependency>
142 </dependencies>
143</project>