blob: 2ff65f87065dea20fdbafb680f644a7f16d270dd [file] [log] [blame]
buyingyi6bf2ffc2013-06-25 21:19:11 -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. ! -->
ramangrover293b221712013-08-01 11:16:42 -070010<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 +000011 <modelVersion>4.0.0</modelVersion>
12 <artifactId>pregelix-dataflow</artifactId>
13 <packaging>jar</packaging>
14 <name>pregelix-dataflow</name>
15
16 <parent>
buyingyi55df5212013-03-24 07:20:08 +000017 <groupId>edu.uci.ics.hyracks</groupId>
18 <artifactId>pregelix</artifactId>
Ian Maxon6cbcf012014-09-19 15:58:48 -070019 <version>0.2.14-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000020 </parent>
buyingyi7f356c12012-10-07 00:23:17 +000021
22
23 <properties>
24 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25 </properties>
26
27 <build>
28 <plugins>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-compiler-plugin</artifactId>
32 <version>2.0.2</version>
33 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000034 <source>1.7</source>
35 <target>1.7</target>
36 <fork>true</fork>
buyingyi7f356c12012-10-07 00:23:17 +000037 </configuration>
38 </plugin>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000041 <artifactId>maven-clean-plugin</artifactId>
vinayakb4df31102013-04-06 18:28:48 +000042 <version>2.4.1</version>
buyingyi7f356c12012-10-07 00:23:17 +000043 <configuration>
44 <filesets>
45 <fileset>
46 <directory>.</directory>
47 <includes>
48 <include>teststore*</include>
49 <include>edu*</include>
50 <include>actual*</include>
51 <include>build*</include>
52 <include>expect*</include>
53 <include>ClusterController*</include>
54 </includes>
55 </fileset>
56 </filesets>
57 </configuration>
58 </plugin>
59 </plugins>
60 </build>
61
62 <dependencies>
63 <dependency>
buyingyie7752502012-10-08 00:35:31 +000064 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000065 <artifactId>pregelix-api</artifactId>
Ian Maxon6cbcf012014-09-19 15:58:48 -070066 <version>0.2.14-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000067 <type>jar</type>
68 <scope>compile</scope>
69 </dependency>
70 <dependency>
buyingyie7752502012-10-08 00:35:31 +000071 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000072 <artifactId>pregelix-dataflow-std-base</artifactId>
Ian Maxon6cbcf012014-09-19 15:58:48 -070073 <version>0.2.14-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000074 <type>jar</type>
75 <scope>compile</scope>
76 </dependency>
77 <dependency>
78 <groupId>edu.uci.ics.hyracks</groupId>
79 <artifactId>hyracks-api</artifactId>
Ian Maxon6cbcf012014-09-19 15:58:48 -070080 <version>0.2.14-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000081 <type>jar</type>
82 <scope>compile</scope>
83 </dependency>
84 <dependency>
85 <groupId>edu.uci.ics.hyracks</groupId>
86 <artifactId>hyracks-dataflow-common</artifactId>
Ian Maxon6cbcf012014-09-19 15:58:48 -070087 <version>0.2.14-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000088 <type>jar</type>
89 <scope>compile</scope>
90 </dependency>
91 <dependency>
92 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +000093 <artifactId>hyracks-data-std</artifactId>
Ian Maxon6cbcf012014-09-19 15:58:48 -070094 <version>0.2.14-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +000095 </dependency>
96 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +000097 <groupId>edu.uci.ics.hyracks</groupId>
98 <artifactId>hyracks-storage-am-common</artifactId>
Ian Maxon6cbcf012014-09-19 15:58:48 -070099 <version>0.2.14-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-storage-am-btree</artifactId>
Ian Maxon6cbcf012014-09-19 15:58:48 -0700106 <version>0.2.14-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000107 <type>jar</type>
108 <scope>compile</scope>
109 </dependency>
110 <dependency>
buyingyi7f356c12012-10-07 00:23:17 +0000111 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi6bf2ffc2013-06-25 21:19:11 -0700112 <artifactId>hyracks-storage-am-lsm-common</artifactId>
Ian Maxon6cbcf012014-09-19 15:58:48 -0700113 <version>0.2.14-SNAPSHOT</version>
buyingyi6bf2ffc2013-06-25 21:19:11 -0700114 <type>jar</type>
115 <scope>compile</scope>
116 </dependency>
117 <dependency>
118 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000119 <artifactId>hyracks-control-cc</artifactId>
Ian Maxon6cbcf012014-09-19 15:58:48 -0700120 <version>0.2.14-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000121 <type>jar</type>
122 <scope>compile</scope>
123 </dependency>
124 <dependency>
125 <groupId>edu.uci.ics.hyracks</groupId>
126 <artifactId>hyracks-control-nc</artifactId>
Ian Maxon6cbcf012014-09-19 15:58:48 -0700127 <version>0.2.14-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000128 <type>jar</type>
129 <scope>compile</scope>
130 </dependency>
131 <dependency>
132 <groupId>edu.uci.ics.hyracks</groupId>
buyingyi7f356c12012-10-07 00:23:17 +0000133 <artifactId>hyracks-ipc</artifactId>
Ian Maxon6cbcf012014-09-19 15:58:48 -0700134 <version>0.2.14-SNAPSHOT</version>
buyingyi7f356c12012-10-07 00:23:17 +0000135 <type>jar</type>
136 <scope>compile</scope>
137 </dependency>
138 </dependencies>
139</project>