blob: 8e8824b17f5b079ca07739a360668a5e17591512 [file] [log] [blame]
vinayakb6390e6b2012-10-29 15:15:31 +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-std</artifactId>
5 <packaging>jar</packaging>
6 <name>pregelix-dataflow-std</name>
7
8 <parent>
buyingyie7752502012-10-08 00:35:31 +00009 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000010 <artifactId>pregelix</artifactId>
vinayakb6390e6b2012-10-29 15:15:31 +000011 <version>0.2.2-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000012 </parent>
13
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>
26 <source>1.6</source>
27 <target>1.6</target>
28 </configuration>
29 </plugin>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-surefire-plugin</artifactId>
33 <version>2.7.2</version>
34 <configuration>
35 <forkMode>pertest</forkMode>
buyingyi62598052012-10-22 19:55:10 +000036 <argLine>-enableassertions -Xmx512m -Dfile.encoding=UTF-8
buyingyi7f356c12012-10-07 00:23:17 +000037 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
38 <includes>
39 <include>**/*TestSuite.java</include>
40 <include>**/*Test.java</include>
41 </includes>
42 </configuration>
43 </plugin>
44 <plugin>
45 <artifactId>maven-clean-plugin</artifactId>
46 <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 </includes>
58 </fileset>
59 </filesets>
60 </configuration>
61 </plugin>
62 </plugins>
63 </build>
64
65 <dependencies>
66 <dependency>
67 <groupId>junit</groupId>
68 <artifactId>junit</artifactId>
69 <version>4.8.1</version>
70 <scope>test</scope>
71 </dependency>
72 <dependency>
buyingyie7752502012-10-08 00:35:31 +000073 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000074 <artifactId>pregelix-dataflow-std-base</artifactId>
vinayakb6390e6b2012-10-29 15:15:31 +000075 <version>0.2.2-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000076 <type>jar</type>
77 <scope>compile</scope>
78 </dependency>
79 <dependency>
80 <groupId>edu.uci.ics.hyracks</groupId>
81 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb6390e6b2012-10-29 15:15:31 +000082 <version>0.2.2-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000083 <type>jar</type>
84 <scope>compile</scope>
85 </dependency>
86 <dependency>
87 <groupId>edu.uci.ics.hyracks</groupId>
88 <artifactId>hyracks-api</artifactId>
vinayakb6390e6b2012-10-29 15:15:31 +000089 <version>0.2.2-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000090 <type>jar</type>
91 <scope>compile</scope>
92 </dependency>
93 <dependency>
94 <groupId>edu.uci.ics.hyracks</groupId>
95 <artifactId>hyracks-dataflow-common</artifactId>
vinayakb6390e6b2012-10-29 15:15:31 +000096 <version>0.2.2-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000097 <type>jar</type>
98 <scope>compile</scope>
99 </dependency>
100 <dependency>
101 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000102 <artifactId>hyracks-data-std</artifactId>
vinayakb6390e6b2012-10-29 15:15:31 +0000103 <version>0.2.2-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000104 </dependency>
105 <dependency>
106 <groupId>org.apache.hadoop</groupId>
107 <artifactId>hadoop-core</artifactId>
108 <version>0.20.2</version>
109 <type>jar</type>
110 <scope>compile</scope>
111 </dependency>
112 <dependency>
113 <groupId>edu.uci.ics.hyracks</groupId>
114 <artifactId>hyracks-storage-am-common</artifactId>
vinayakb6390e6b2012-10-29 15:15:31 +0000115 <version>0.2.2-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000116 <type>jar</type>
117 <scope>compile</scope>
118 </dependency>
119 <dependency>
120 <groupId>edu.uci.ics.hyracks</groupId>
121 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb6390e6b2012-10-29 15:15:31 +0000122 <version>0.2.2-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000123 <type>jar</type>
124 <scope>compile</scope>
125 </dependency>
126 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000127 <groupId>edu.uci.ics.hyracks</groupId>
128 <artifactId>hyracks-control-cc</artifactId>
vinayakb6390e6b2012-10-29 15:15:31 +0000129 <version>0.2.2-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000130 <type>jar</type>
131 <scope>compile</scope>
132 </dependency>
133 <dependency>
134 <groupId>edu.uci.ics.hyracks</groupId>
135 <artifactId>hyracks-control-nc</artifactId>
vinayakb6390e6b2012-10-29 15:15:31 +0000136 <version>0.2.2-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000137 <type>jar</type>
138 <scope>compile</scope>
139 </dependency>
140 <dependency>
141 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000142 <artifactId>hyracks-ipc</artifactId>
vinayakb6390e6b2012-10-29 15:15:31 +0000143 <version>0.2.2-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000144 <type>jar</type>
145 <scope>compile</scope>
146 </dependency>
147 </dependencies>
148</project>