blob: db10aefda1b204344b1d2e3d59690b76e65bd401 [file] [log] [blame]
vinayakb4a6309b2012-10-29 15:44:02 +00001<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 +00002 <modelVersion>4.0.0</modelVersion>
3 <artifactId>pregelix-dataflow-std</artifactId>
4 <packaging>jar</packaging>
5 <name>pregelix-dataflow-std</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
14 <properties>
15 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16 </properties>
17
18 <build>
19 <plugins>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-compiler-plugin</artifactId>
23 <version>2.0.2</version>
24 <configuration>
25 <source>1.6</source>
26 <target>1.6</target>
27 </configuration>
28 </plugin>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-surefire-plugin</artifactId>
32 <version>2.7.2</version>
33 <configuration>
34 <forkMode>pertest</forkMode>
buyingyi62598052012-10-22 19:55:10 +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>
vinayakb84807932012-11-20 02:31:24 +000044 <groupId>org.apache.maven.plugins</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000045 <artifactId>maven-clean-plugin</artifactId>
vinayakb84807932012-11-20 02:31:24 +000046 <version>2.4.1</version>
buyingyi7f356c12012-10-07 00:23:17 +000047 <configuration>
48 <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 </includes>
59 </fileset>
60 </filesets>
61 </configuration>
62 </plugin>
63 </plugins>
64 </build>
65
66 <dependencies>
67 <dependency>
68 <groupId>junit</groupId>
69 <artifactId>junit</artifactId>
70 <version>4.8.1</version>
71 <scope>test</scope>
72 </dependency>
73 <dependency>
buyingyie7752502012-10-08 00:35:31 +000074 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000075 <artifactId>pregelix-dataflow-std-base</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000076 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000077 <type>jar</type>
78 <scope>compile</scope>
79 </dependency>
80 <dependency>
81 <groupId>edu.uci.ics.hyracks</groupId>
82 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000083 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000084 <type>jar</type>
85 <scope>compile</scope>
86 </dependency>
87 <dependency>
88 <groupId>edu.uci.ics.hyracks</groupId>
89 <artifactId>hyracks-api</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000090 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000091 <type>jar</type>
92 <scope>compile</scope>
93 </dependency>
94 <dependency>
95 <groupId>edu.uci.ics.hyracks</groupId>
96 <artifactId>hyracks-dataflow-common</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +000097 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000098 <type>jar</type>
99 <scope>compile</scope>
100 </dependency>
101 <dependency>
102 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000103 <artifactId>hyracks-data-std</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000104 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000105 </dependency>
106 <dependency>
107 <groupId>org.apache.hadoop</groupId>
108 <artifactId>hadoop-core</artifactId>
109 <version>0.20.2</version>
110 <type>jar</type>
111 <scope>compile</scope>
112 </dependency>
113 <dependency>
114 <groupId>edu.uci.ics.hyracks</groupId>
115 <artifactId>hyracks-storage-am-common</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000116 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000117 <type>jar</type>
118 <scope>compile</scope>
119 </dependency>
120 <dependency>
121 <groupId>edu.uci.ics.hyracks</groupId>
122 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000123 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000124 <type>jar</type>
125 <scope>compile</scope>
126 </dependency>
127 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000128 <groupId>edu.uci.ics.hyracks</groupId>
129 <artifactId>hyracks-control-cc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000130 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000131 <type>jar</type>
132 <scope>compile</scope>
133 </dependency>
134 <dependency>
135 <groupId>edu.uci.ics.hyracks</groupId>
136 <artifactId>hyracks-control-nc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000137 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000138 <type>jar</type>
139 <scope>compile</scope>
140 </dependency>
141 <dependency>
142 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000143 <artifactId>hyracks-ipc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000144 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000145 <type>jar</type>
146 <scope>compile</scope>
147 </dependency>
148 </dependencies>
149</project>