buyingyi | 6bf2ffc | 2013-06-25 21:19:11 -0700 | [diff] [blame] | 1 | <!-- ! 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"> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 12 | <modelVersion>4.0.0</modelVersion> |
| 13 | <artifactId>pregelix-dataflow</artifactId> |
| 14 | <packaging>jar</packaging> |
| 15 | <name>pregelix-dataflow</name> |
| 16 | |
| 17 | <parent> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 18 | <groupId>edu.uci.ics.hyracks</groupId> |
| 19 | <artifactId>pregelix</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 20 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 21 | </parent> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 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> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 35 | <source>1.7</source> |
| 36 | <target>1.7</target> |
| 37 | <fork>true</fork> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 38 | </configuration> |
| 39 | </plugin> |
| 40 | <plugin> |
| 41 | <groupId>org.apache.maven.plugins</groupId> |
| 42 | <artifactId>maven-surefire-plugin</artifactId> |
| 43 | <version>2.7.2</version> |
| 44 | <configuration> |
| 45 | <forkMode>pertest</forkMode> |
buyingyi | 1188fd9 | 2012-10-22 05:14:34 +0000 | [diff] [blame] | 46 | <argLine>-enableassertions -Xmx512m -Dfile.encoding=UTF-8 |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 47 | -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine> |
| 48 | <includes> |
| 49 | <include>**/*TestSuite.java</include> |
| 50 | <include>**/*Test.java</include> |
| 51 | </includes> |
| 52 | </configuration> |
| 53 | </plugin> |
| 54 | <plugin> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 55 | <groupId>org.apache.maven.plugins</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 56 | <artifactId>maven-clean-plugin</artifactId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 57 | <version>2.4.1</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 58 | <configuration> |
| 59 | <filesets> |
| 60 | <fileset> |
| 61 | <directory>.</directory> |
| 62 | <includes> |
| 63 | <include>teststore*</include> |
| 64 | <include>edu*</include> |
| 65 | <include>actual*</include> |
| 66 | <include>build*</include> |
| 67 | <include>expect*</include> |
| 68 | <include>ClusterController*</include> |
| 69 | </includes> |
| 70 | </fileset> |
| 71 | </filesets> |
| 72 | </configuration> |
| 73 | </plugin> |
| 74 | </plugins> |
| 75 | </build> |
| 76 | |
| 77 | <dependencies> |
| 78 | <dependency> |
| 79 | <groupId>junit</groupId> |
| 80 | <artifactId>junit</artifactId> |
| 81 | <version>4.8.1</version> |
| 82 | <scope>test</scope> |
| 83 | </dependency> |
| 84 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 85 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 86 | <artifactId>pregelix-api</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 87 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 88 | <type>jar</type> |
| 89 | <scope>compile</scope> |
| 90 | </dependency> |
| 91 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 92 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 93 | <artifactId>pregelix-dataflow-std-base</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 94 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 95 | <type>jar</type> |
| 96 | <scope>compile</scope> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>edu.uci.ics.hyracks</groupId> |
| 100 | <artifactId>hyracks-api</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 101 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 102 | <type>jar</type> |
| 103 | <scope>compile</scope> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>edu.uci.ics.hyracks</groupId> |
| 107 | <artifactId>hyracks-dataflow-common</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 108 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 109 | <type>jar</type> |
| 110 | <scope>compile</scope> |
| 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 114 | <artifactId>hyracks-data-std</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 115 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 116 | </dependency> |
| 117 | <dependency> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 118 | <groupId>edu.uci.ics.hyracks</groupId> |
| 119 | <artifactId>hyracks-storage-am-common</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 120 | <version>0.2.7-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> |
| 125 | <groupId>edu.uci.ics.hyracks</groupId> |
| 126 | <artifactId>hyracks-storage-am-btree</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 127 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 128 | <type>jar</type> |
| 129 | <scope>compile</scope> |
| 130 | </dependency> |
| 131 | <dependency> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 132 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 6bf2ffc | 2013-06-25 21:19:11 -0700 | [diff] [blame] | 133 | <artifactId>hyracks-storage-am-lsm-common</artifactId> |
| 134 | <version>0.2.7-SNAPSHOT</version> |
| 135 | <type>jar</type> |
| 136 | <scope>compile</scope> |
| 137 | </dependency> |
| 138 | <dependency> |
| 139 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 140 | <artifactId>hyracks-control-cc</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 141 | <version>0.2.7-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> |
| 147 | <artifactId>hyracks-control-nc</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 148 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 149 | <type>jar</type> |
| 150 | <scope>compile</scope> |
| 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 154 | <artifactId>hyracks-ipc</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 155 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 156 | <type>jar</type> |
| 157 | <scope>compile</scope> |
| 158 | </dependency> |
| 159 | </dependencies> |
| 160 | </project> |