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> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame^] | 24 | <version>0.2.10-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> |
| 46 | <artifactId>maven-surefire-plugin</artifactId> |
| 47 | <version>2.7.2</version> |
| 48 | <configuration> |
| 49 | <forkMode>pertest</forkMode> |
buyingyi | 6259805 | 2012-10-22 19:55:10 +0000 | [diff] [blame] | 50 | <argLine>-enableassertions -Xmx512m -Dfile.encoding=UTF-8 |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 51 | -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> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 59 | <groupId>org.apache.maven.plugins</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 60 | <artifactId>maven-clean-plugin</artifactId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 61 | <version>2.4.1</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 62 | <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> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 89 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 90 | <artifactId>pregelix-dataflow-std-base</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame^] | 91 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 92 | <type>jar</type> |
| 93 | <scope>compile</scope> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>edu.uci.ics.hyracks</groupId> |
| 97 | <artifactId>hyracks-dataflow-std</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame^] | 98 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 99 | <type>jar</type> |
| 100 | <scope>compile</scope> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>edu.uci.ics.hyracks</groupId> |
| 104 | <artifactId>hyracks-api</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame^] | 105 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 106 | <type>jar</type> |
| 107 | <scope>compile</scope> |
| 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>edu.uci.ics.hyracks</groupId> |
| 111 | <artifactId>hyracks-dataflow-common</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame^] | 112 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 113 | <type>jar</type> |
| 114 | <scope>compile</scope> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 118 | <artifactId>hyracks-data-std</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame^] | 119 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 120 | <type>jar</type> |
| 121 | <scope>compile</scope> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 122 | </dependency> |
| 123 | <dependency> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 124 | <groupId>edu.uci.ics.hyracks</groupId> |
| 125 | <artifactId>hyracks-hdfs-core</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame^] | 126 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 127 | <type>jar</type> |
| 128 | <scope>compile</scope> |
| 129 | </dependency> |
| 130 | <dependency> |
| 131 | <groupId>edu.uci.ics.hyracks</groupId> |
| 132 | <artifactId>hyracks-storage-am-common</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame^] | 133 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 134 | <type>jar</type> |
| 135 | <scope>compile</scope> |
| 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>edu.uci.ics.hyracks</groupId> |
| 139 | <artifactId>hyracks-storage-am-btree</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame^] | 140 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 141 | <type>jar</type> |
| 142 | <scope>compile</scope> |
| 143 | </dependency> |
| 144 | <dependency> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 145 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 23e2e75 | 2013-06-28 21:52:07 -0700 | [diff] [blame] | 146 | <artifactId>hyracks-storage-am-lsm-btree</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame^] | 147 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 23e2e75 | 2013-06-28 21:52:07 -0700 | [diff] [blame] | 148 | <type>jar</type> |
| 149 | <scope>compile</scope> |
| 150 | </dependency> |
| 151 | <dependency> |
| 152 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 153 | <artifactId>hyracks-control-cc</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame^] | 154 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 155 | <type>jar</type> |
| 156 | <scope>compile</scope> |
| 157 | </dependency> |
| 158 | <dependency> |
| 159 | <groupId>edu.uci.ics.hyracks</groupId> |
| 160 | <artifactId>hyracks-control-nc</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame^] | 161 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 162 | <type>jar</type> |
| 163 | <scope>compile</scope> |
| 164 | </dependency> |
| 165 | <dependency> |
| 166 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 167 | <artifactId>hyracks-ipc</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame^] | 168 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 169 | <type>jar</type> |
| 170 | <scope>compile</scope> |
| 171 | </dependency> |
| 172 | </dependencies> |
| 173 | </project> |