Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
| 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 | !--> |
vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 15 | <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"> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 16 | <modelVersion>4.0.0</modelVersion> |
| 17 | <artifactId>pregelix-dataflow-std</artifactId> |
| 18 | <packaging>jar</packaging> |
| 19 | <name>pregelix-dataflow-std</name> |
| 20 | |
| 21 | <parent> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 22 | <groupId>edu.uci.ics.hyracks</groupId> |
| 23 | <artifactId>pregelix</artifactId> |
Ian Maxon | 6cbcf01 | 2014-09-19 15:58:48 -0700 | [diff] [blame] | 24 | <version>0.2.14-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 25 | </parent> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 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> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 39 | <source>1.7</source> |
| 40 | <target>1.7</target> |
| 41 | <fork>true</fork> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 42 | </configuration> |
| 43 | </plugin> |
| 44 | <plugin> |
| 45 | <groupId>org.apache.maven.plugins</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 46 | <artifactId>maven-clean-plugin</artifactId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 47 | <version>2.4.1</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 48 | <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> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 69 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 70 | <artifactId>pregelix-dataflow-std-base</artifactId> |
Ian Maxon | 6cbcf01 | 2014-09-19 15:58:48 -0700 | [diff] [blame] | 71 | <version>0.2.14-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 72 | <type>jar</type> |
| 73 | <scope>compile</scope> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>edu.uci.ics.hyracks</groupId> |
| 77 | <artifactId>hyracks-dataflow-std</artifactId> |
Ian Maxon | 6cbcf01 | 2014-09-19 15:58:48 -0700 | [diff] [blame] | 78 | <version>0.2.14-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 79 | <type>jar</type> |
| 80 | <scope>compile</scope> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>edu.uci.ics.hyracks</groupId> |
| 84 | <artifactId>hyracks-api</artifactId> |
Ian Maxon | 6cbcf01 | 2014-09-19 15:58:48 -0700 | [diff] [blame] | 85 | <version>0.2.14-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 86 | <type>jar</type> |
| 87 | <scope>compile</scope> |
| 88 | </dependency> |
| 89 | <dependency> |
| 90 | <groupId>edu.uci.ics.hyracks</groupId> |
| 91 | <artifactId>hyracks-dataflow-common</artifactId> |
Ian Maxon | 6cbcf01 | 2014-09-19 15:58:48 -0700 | [diff] [blame] | 92 | <version>0.2.14-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 93 | <type>jar</type> |
| 94 | <scope>compile</scope> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 98 | <artifactId>hyracks-data-std</artifactId> |
Ian Maxon | 6cbcf01 | 2014-09-19 15:58:48 -0700 | [diff] [blame] | 99 | <version>0.2.14-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 100 | <type>jar</type> |
| 101 | <scope>compile</scope> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 102 | </dependency> |
| 103 | <dependency> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 104 | <groupId>edu.uci.ics.hyracks</groupId> |
| 105 | <artifactId>hyracks-hdfs-core</artifactId> |
Ian Maxon | 6cbcf01 | 2014-09-19 15:58:48 -0700 | [diff] [blame] | 106 | <version>0.2.14-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 107 | <type>jar</type> |
| 108 | <scope>compile</scope> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>edu.uci.ics.hyracks</groupId> |
| 112 | <artifactId>hyracks-storage-am-common</artifactId> |
Ian Maxon | 6cbcf01 | 2014-09-19 15:58:48 -0700 | [diff] [blame] | 113 | <version>0.2.14-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 114 | <type>jar</type> |
| 115 | <scope>compile</scope> |
| 116 | </dependency> |
| 117 | <dependency> |
| 118 | <groupId>edu.uci.ics.hyracks</groupId> |
| 119 | <artifactId>hyracks-storage-am-btree</artifactId> |
Ian Maxon | 6cbcf01 | 2014-09-19 15:58:48 -0700 | [diff] [blame] | 120 | <version>0.2.14-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 121 | <type>jar</type> |
| 122 | <scope>compile</scope> |
| 123 | </dependency> |
| 124 | <dependency> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 125 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 23e2e75 | 2013-06-28 21:52:07 -0700 | [diff] [blame] | 126 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
Ian Maxon | 6cbcf01 | 2014-09-19 15:58:48 -0700 | [diff] [blame] | 127 | <version>0.2.14-SNAPSHOT</version> |
buyingyi | 23e2e75 | 2013-06-28 21:52:07 -0700 | [diff] [blame] | 128 | <type>jar</type> |
| 129 | <scope>compile</scope> |
| 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 133 | <artifactId>hyracks-control-cc</artifactId> |
Ian Maxon | 6cbcf01 | 2014-09-19 15:58:48 -0700 | [diff] [blame] | 134 | <version>0.2.14-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 135 | <type>jar</type> |
| 136 | <scope>compile</scope> |
| 137 | </dependency> |
| 138 | <dependency> |
| 139 | <groupId>edu.uci.ics.hyracks</groupId> |
| 140 | <artifactId>hyracks-control-nc</artifactId> |
Ian Maxon | 6cbcf01 | 2014-09-19 15:58:48 -0700 | [diff] [blame] | 141 | <version>0.2.14-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 142 | <type>jar</type> |
| 143 | <scope>compile</scope> |
| 144 | </dependency> |
| 145 | <dependency> |
| 146 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 147 | <artifactId>hyracks-ipc</artifactId> |
Ian Maxon | 6cbcf01 | 2014-09-19 15:58:48 -0700 | [diff] [blame] | 148 | <version>0.2.14-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 149 | <type>jar</type> |
| 150 | <scope>compile</scope> |
| 151 | </dependency> |
| 152 | </dependencies> |
| 153 | </project> |