blob: 87255a0efc475cabe4de7edc5984bfd0f14ba892 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
2 ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License");
4 ! you may not use this file except in compliance with the License.
5 ! you may obtain a copy of the License from
6 !
7 ! http://www.apache.org/licenses/LICENSE-2.0
8 !
9 ! Unless required by applicable law or agreed to in writing, software
10 ! distributed under the License is distributed on an "AS IS" BASIS,
11 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ! See the License for the specific language governing permissions and
13 ! limitations under the License.
14 !-->
vinayakb4a6309b2012-10-29 15:44:02 +000015<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 +000016 <modelVersion>4.0.0</modelVersion>
17 <artifactId>pregelix-runtime</artifactId>
18 <packaging>jar</packaging>
19 <name>pregelix-runtime</name>
20
21 <parent>
buyingyie7752502012-10-08 00:35:31 +000022 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000023 <artifactId>pregelix</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080024 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000025 </parent>
26
27
28 <properties>
29 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
30 </properties>
31
32 <build>
33 <plugins>
34 <plugin>
35 <groupId>org.apache.maven.plugins</groupId>
36 <artifactId>maven-compiler-plugin</artifactId>
37 <version>2.0.2</version>
38 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000039 <source>1.7</source>
40 <target>1.7</target>
41 <fork>true</fork>
buyingyi7f356c12012-10-07 00:23:17 +000042 </configuration>
43 </plugin>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-surefire-plugin</artifactId>
47 <version>2.7.2</version>
48 <configuration>
49 <forkMode>pertest</forkMode>
buyingyi1188fd92012-10-22 05:14:34 +000050 <argLine>-enableassertions -Xmx512m -Dfile.encoding=UTF-8
buyingyi7f356c12012-10-07 00:23:17 +000051 -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine>
52 <includes>
53 <include>**/*TestSuite.java</include>
54 <include>**/*Test.java</include>
55 </includes>
56 </configuration>
57 </plugin>
58 <plugin>
vinayakb4df31102013-04-06 18:28:48 +000059 <groupId>org.apache.maven.plugins</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000060 <artifactId>maven-clean-plugin</artifactId>
vinayakb4df31102013-04-06 18:28:48 +000061 <version>2.4.1</version>
buyingyi7f356c12012-10-07 00:23:17 +000062 <configuration>
63 <filesets>
64 <fileset>
65 <directory>.</directory>
66 <includes>
67 <include>teststore*</include>
68 <include>edu*</include>
69 <include>actual*</include>
70 <include>build*</include>
71 <include>expect*</include>
72 <include>ClusterController*</include>
73 </includes>
74 </fileset>
75 </filesets>
76 </configuration>
77 </plugin>
78 </plugins>
79 </build>
80
81 <dependencies>
82 <dependency>
83 <groupId>junit</groupId>
84 <artifactId>junit</artifactId>
85 <version>4.8.1</version>
86 <scope>test</scope>
87 </dependency>
88 <dependency>
buyingyie7752502012-10-08 00:35:31 +000089 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000090 <artifactId>pregelix-api</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080091 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000092 <type>jar</type>
93 <scope>compile</scope>
94 </dependency>
95 <dependency>
buyingyie7752502012-10-08 00:35:31 +000096 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000097 <artifactId>pregelix-dataflow-std</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080098 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000099 <type>jar</type>
100 <scope>compile</scope>
101 </dependency>
102 <dependency>
buyingyie7752502012-10-08 00:35:31 +0000103 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000104 <artifactId>pregelix-dataflow</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800105 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000106 <type>jar</type>
107 <scope>compile</scope>
108 </dependency>
109 <dependency>
110 <groupId>edu.uci.ics.hyracks</groupId>
111 <artifactId>hyracks-dataflow-std</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800112 <version>0.2.11-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-api</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800119 <version>0.2.11-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-dataflow-common</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800126 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000127 <type>jar</type>
128 <scope>compile</scope>
129 </dependency>
130 <dependency>
131 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000132 <artifactId>hyracks-data-std</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800133 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000134 </dependency>
135 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000136 <groupId>edu.uci.ics.hyracks</groupId>
137 <artifactId>hyracks-storage-am-common</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800138 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000139 <type>jar</type>
140 <scope>compile</scope>
141 </dependency>
142 <dependency>
143 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi04f685e2013-10-17 20:24:37 -0700144 <artifactId>hyracks-storage-common</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800145 <version>0.2.11-SNAPSHOT</version>
buyingyi04f685e2013-10-17 20:24:37 -0700146 <type>jar</type>
147 <scope>compile</scope>
148 </dependency>
149 <dependency>
150 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000151 <artifactId>hyracks-storage-am-btree</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800152 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000153 <type>jar</type>
154 <scope>compile</scope>
155 </dependency>
156 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000157 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi6bf2ffc2013-06-25 21:19:11 -0700158 <artifactId>hyracks-storage-am-lsm-common</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800159 <version>0.2.11-SNAPSHOT</version>
buyingyi6bf2ffc2013-06-25 21:19:11 -0700160 <type>jar</type>
161 <scope>compile</scope>
162 </dependency>
163 <dependency>
164 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000165 <artifactId>hyracks-control-cc</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800166 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000167 <type>jar</type>
168 <scope>compile</scope>
169 </dependency>
170 <dependency>
171 <groupId>edu.uci.ics.hyracks</groupId>
172 <artifactId>hyracks-control-nc</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800173 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000174 <type>jar</type>
175 <scope>compile</scope>
176 </dependency>
177 <dependency>
178 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000179 <artifactId>hyracks-ipc</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800180 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000181 <type>jar</type>
182 <scope>compile</scope>
183 </dependency>
184 </dependencies>
185</project>