blob: c5a0913fe7a1c26afa06af055355f0611697fadf [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-std</artifactId>
5 <packaging>jar</packaging>
6 <name>pregelix-dataflow-std</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>
buyingyi62598052012-10-22 19:55:10 +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-dataflow-std-base</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>
82 <groupId>edu.uci.ics.hyracks</groupId>
83 <artifactId>hyracks-dataflow-std</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>
buyingyi55df5212013-03-24 07:20:08 +0000106 <type>jar</type>
107 <scope>compile</scope>
buyingyi7f356c12012-10-07 00:23:17 +0000108 </dependency>
109 <dependency>
buyingyi55df5212013-03-24 07:20:08 +0000110 <groupId>edu.uci.ics.hyracks</groupId>
111 <artifactId>hyracks-hdfs-core</artifactId>
112 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000113 <type>jar</type>
114 <scope>compile</scope>
115 </dependency>
116 <dependency>
117 <groupId>edu.uci.ics.hyracks</groupId>
118 <artifactId>hyracks-storage-am-common</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000119 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000120 <type>jar</type>
121 <scope>compile</scope>
122 </dependency>
123 <dependency>
124 <groupId>edu.uci.ics.hyracks</groupId>
125 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000126 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000127 <type>jar</type>
128 <scope>compile</scope>
129 </dependency>
130 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000131 <groupId>edu.uci.ics.hyracks</groupId>
132 <artifactId>hyracks-control-cc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000133 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000134 <type>jar</type>
135 <scope>compile</scope>
136 </dependency>
137 <dependency>
138 <groupId>edu.uci.ics.hyracks</groupId>
139 <artifactId>hyracks-control-nc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000140 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000141 <type>jar</type>
142 <scope>compile</scope>
143 </dependency>
144 <dependency>
145 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000146 <artifactId>hyracks-ipc</artifactId>
vinayakb70c821c2012-10-29 15:46:12 +0000147 <version>0.2.3-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000148 <type>jar</type>
149 <scope>compile</scope>
150 </dependency>
151 </dependencies>
152</project>