blob: f6554f7127006b051754e6cf267b2438c742d8a9 [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>
buyingyi7f356c12012-10-07 00:23:17 +000046 <artifactId>maven-clean-plugin</artifactId>
vinayakb4df31102013-04-06 18:28:48 +000047 <version>2.4.1</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>
buyingyie7752502012-10-08 00:35:31 +000069 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000070 <artifactId>pregelix-api</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080071 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000072 <type>jar</type>
73 <scope>compile</scope>
74 </dependency>
75 <dependency>
buyingyie7752502012-10-08 00:35:31 +000076 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000077 <artifactId>pregelix-dataflow-std</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080078 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000079 <type>jar</type>
80 <scope>compile</scope>
81 </dependency>
82 <dependency>
buyingyie7752502012-10-08 00:35:31 +000083 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000084 <artifactId>pregelix-dataflow</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080085 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000086 <type>jar</type>
87 <scope>compile</scope>
88 </dependency>
89 <dependency>
90 <groupId>edu.uci.ics.hyracks</groupId>
91 <artifactId>hyracks-dataflow-std</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080092 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000093 <type>jar</type>
94 <scope>compile</scope>
95 </dependency>
96 <dependency>
97 <groupId>edu.uci.ics.hyracks</groupId>
98 <artifactId>hyracks-api</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080099 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000100 <type>jar</type>
101 <scope>compile</scope>
102 </dependency>
103 <dependency>
104 <groupId>edu.uci.ics.hyracks</groupId>
105 <artifactId>hyracks-dataflow-common</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800106 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000107 <type>jar</type>
108 <scope>compile</scope>
109 </dependency>
110 <dependency>
111 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000112 <artifactId>hyracks-data-std</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800113 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000114 </dependency>
115 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000116 <groupId>edu.uci.ics.hyracks</groupId>
117 <artifactId>hyracks-storage-am-common</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800118 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000119 <type>jar</type>
120 <scope>compile</scope>
121 </dependency>
122 <dependency>
123 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi04f685e2013-10-17 20:24:37 -0700124 <artifactId>hyracks-storage-common</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800125 <version>0.2.11-SNAPSHOT</version>
buyingyi04f685e2013-10-17 20:24:37 -0700126 <type>jar</type>
127 <scope>compile</scope>
128 </dependency>
129 <dependency>
130 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000131 <artifactId>hyracks-storage-am-btree</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800132 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000133 <type>jar</type>
134 <scope>compile</scope>
135 </dependency>
136 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000137 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi6bf2ffc2013-06-25 21:19:11 -0700138 <artifactId>hyracks-storage-am-lsm-common</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800139 <version>0.2.11-SNAPSHOT</version>
buyingyi6bf2ffc2013-06-25 21:19:11 -0700140 <type>jar</type>
141 <scope>compile</scope>
142 </dependency>
143 <dependency>
144 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000145 <artifactId>hyracks-control-cc</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800146 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000147 <type>jar</type>
148 <scope>compile</scope>
149 </dependency>
150 <dependency>
151 <groupId>edu.uci.ics.hyracks</groupId>
152 <artifactId>hyracks-control-nc</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800153 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000154 <type>jar</type>
155 <scope>compile</scope>
156 </dependency>
157 <dependency>
158 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000159 <artifactId>hyracks-ipc</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -0800160 <version>0.2.11-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000161 <type>jar</type>
162 <scope>compile</scope>
163 </dependency>
164 </dependencies>
165</project>