blob: 426844420f3288340a6ab5e9fd80c81126e3626d [file] [log] [blame]
Yingyi Bu0622e8e2014-05-27 17:46:41 -07001<!-- ! Copyright 2009-2013 by The Regents of the University of California
2 ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may
3 not use this file except in compliance with the License. ! you may obtain
4 a copy of the License from ! ! http://www.apache.org/licenses/LICENSE-2.0
5 ! ! Unless required by applicable law or agreed to in writing, software !
6 distributed under the License is distributed on an "AS IS" BASIS, ! WITHOUT
7 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! See the
8 License for the specific language governing permissions and ! limitations
9 under the License. ! -->
10<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11 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 +000012 <modelVersion>4.0.0</modelVersion>
13 <artifactId>pregelix-runtime</artifactId>
14 <packaging>jar</packaging>
15 <name>pregelix-runtime</name>
16
17 <parent>
buyingyie7752502012-10-08 00:35:31 +000018 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000019 <artifactId>pregelix</artifactId>
Zachary Heilbron79b4c822014-03-30 14:52:06 -070020 <version>0.2.12-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000021 </parent>
22
23
24 <properties>
25 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
26 </properties>
27
28 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-compiler-plugin</artifactId>
33 <version>2.0.2</version>
34 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000035 <source>1.7</source>
36 <target>1.7</target>
37 <fork>true</fork>
buyingyi7f356c12012-10-07 00:23:17 +000038 </configuration>
39 </plugin>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000042 <artifactId>maven-clean-plugin</artifactId>
vinayakb4df31102013-04-06 18:28:48 +000043 <version>2.4.1</version>
buyingyi7f356c12012-10-07 00:23:17 +000044 <configuration>
45 <filesets>
46 <fileset>
47 <directory>.</directory>
48 <includes>
49 <include>teststore*</include>
50 <include>edu*</include>
51 <include>actual*</include>
52 <include>build*</include>
53 <include>expect*</include>
54 <include>ClusterController*</include>
55 </includes>
56 </fileset>
57 </filesets>
58 </configuration>
59 </plugin>
60 </plugins>
61 </build>
62
63 <dependencies>
64 <dependency>
buyingyie7752502012-10-08 00:35:31 +000065 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000066 <artifactId>pregelix-api</artifactId>
Zachary Heilbron79b4c822014-03-30 14:52:06 -070067 <version>0.2.12-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000068 <type>jar</type>
69 <scope>compile</scope>
70 </dependency>
71 <dependency>
buyingyie7752502012-10-08 00:35:31 +000072 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000073 <artifactId>pregelix-dataflow-std</artifactId>
Zachary Heilbron79b4c822014-03-30 14:52:06 -070074 <version>0.2.12-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000075 <type>jar</type>
76 <scope>compile</scope>
77 </dependency>
78 <dependency>
buyingyie7752502012-10-08 00:35:31 +000079 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000080 <artifactId>pregelix-dataflow</artifactId>
Zachary Heilbron79b4c822014-03-30 14:52:06 -070081 <version>0.2.12-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000082 <type>jar</type>
83 <scope>compile</scope>
84 </dependency>
85 <dependency>
86 <groupId>edu.uci.ics.hyracks</groupId>
87 <artifactId>hyracks-dataflow-std</artifactId>
Zachary Heilbron79b4c822014-03-30 14:52:06 -070088 <version>0.2.12-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000089 <type>jar</type>
90 <scope>compile</scope>
91 </dependency>
92 <dependency>
93 <groupId>edu.uci.ics.hyracks</groupId>
94 <artifactId>hyracks-api</artifactId>
Zachary Heilbron79b4c822014-03-30 14:52:06 -070095 <version>0.2.12-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000096 <type>jar</type>
97 <scope>compile</scope>
98 </dependency>
99 <dependency>
100 <groupId>edu.uci.ics.hyracks</groupId>
101 <artifactId>hyracks-dataflow-common</artifactId>
Zachary Heilbron79b4c822014-03-30 14:52:06 -0700102 <version>0.2.12-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000103 <type>jar</type>
104 <scope>compile</scope>
105 </dependency>
106 <dependency>
107 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000108 <artifactId>hyracks-data-std</artifactId>
Zachary Heilbron79b4c822014-03-30 14:52:06 -0700109 <version>0.2.12-SNAPSHOT</version>
Yingyi Bu0622e8e2014-05-27 17:46:41 -0700110 <type>jar</type>
111 <scope>compile</scope>
buyingyi7f356c12012-10-07 00:23:17 +0000112 </dependency>
113 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000114 <groupId>edu.uci.ics.hyracks</groupId>
115 <artifactId>hyracks-storage-am-common</artifactId>
Zachary Heilbron79b4c822014-03-30 14:52:06 -0700116 <version>0.2.12-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>
buyingyi04f685e2013-10-17 20:24:37 -0700122 <artifactId>hyracks-storage-common</artifactId>
Zachary Heilbron79b4c822014-03-30 14:52:06 -0700123 <version>0.2.12-SNAPSHOT</version>
buyingyi04f685e2013-10-17 20:24:37 -0700124 <type>jar</type>
125 <scope>compile</scope>
126 </dependency>
127 <dependency>
128 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000129 <artifactId>hyracks-storage-am-btree</artifactId>
Zachary Heilbron79b4c822014-03-30 14:52:06 -0700130 <version>0.2.12-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000131 <type>jar</type>
132 <scope>compile</scope>
133 </dependency>
134 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000135 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi6bf2ffc2013-06-25 21:19:11 -0700136 <artifactId>hyracks-storage-am-lsm-common</artifactId>
Zachary Heilbron79b4c822014-03-30 14:52:06 -0700137 <version>0.2.12-SNAPSHOT</version>
buyingyi6bf2ffc2013-06-25 21:19:11 -0700138 <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-control-cc</artifactId>
Zachary Heilbron79b4c822014-03-30 14:52:06 -0700144 <version>0.2.12-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000145 <type>jar</type>
146 <scope>compile</scope>
147 </dependency>
148 <dependency>
149 <groupId>edu.uci.ics.hyracks</groupId>
150 <artifactId>hyracks-control-nc</artifactId>
Zachary Heilbron79b4c822014-03-30 14:52:06 -0700151 <version>0.2.12-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000152 <type>jar</type>
153 <scope>compile</scope>
154 </dependency>
155 <dependency>
156 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000157 <artifactId>hyracks-ipc</artifactId>
Zachary Heilbron79b4c822014-03-30 14:52:06 -0700158 <version>0.2.12-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000159 <type>jar</type>
160 <scope>compile</scope>
161 </dependency>
162 </dependencies>
163</project>