vinayakb | 4a6309b | 2012-10-29 15:44:02 +0000 | [diff] [blame^] | 1 | <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] | 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <artifactId>pregelix-dataflow-std</artifactId> |
| 4 | <packaging>jar</packaging> |
| 5 | <name>pregelix-dataflow-std</name> |
| 6 | |
| 7 | <parent> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 8 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 9 | <artifactId>pregelix</artifactId> |
vinayakb | 4a6309b | 2012-10-29 15:44:02 +0000 | [diff] [blame^] | 10 | <version>0.2.2</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 11 | </parent> |
| 12 | |
| 13 | |
| 14 | <properties> |
| 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 16 | </properties> |
| 17 | |
| 18 | <build> |
| 19 | <plugins> |
| 20 | <plugin> |
| 21 | <groupId>org.apache.maven.plugins</groupId> |
| 22 | <artifactId>maven-compiler-plugin</artifactId> |
| 23 | <version>2.0.2</version> |
| 24 | <configuration> |
| 25 | <source>1.6</source> |
| 26 | <target>1.6</target> |
| 27 | </configuration> |
| 28 | </plugin> |
| 29 | <plugin> |
| 30 | <groupId>org.apache.maven.plugins</groupId> |
| 31 | <artifactId>maven-surefire-plugin</artifactId> |
| 32 | <version>2.7.2</version> |
| 33 | <configuration> |
| 34 | <forkMode>pertest</forkMode> |
buyingyi | 6259805 | 2012-10-22 19:55:10 +0000 | [diff] [blame] | 35 | <argLine>-enableassertions -Xmx512m -Dfile.encoding=UTF-8 |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 36 | -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine> |
| 37 | <includes> |
| 38 | <include>**/*TestSuite.java</include> |
| 39 | <include>**/*Test.java</include> |
| 40 | </includes> |
| 41 | </configuration> |
| 42 | </plugin> |
| 43 | <plugin> |
| 44 | <artifactId>maven-clean-plugin</artifactId> |
| 45 | <configuration> |
| 46 | <filesets> |
| 47 | <fileset> |
| 48 | <directory>.</directory> |
| 49 | <includes> |
| 50 | <include>teststore*</include> |
| 51 | <include>edu*</include> |
| 52 | <include>actual*</include> |
| 53 | <include>build*</include> |
| 54 | <include>expect*</include> |
| 55 | <include>ClusterController*</include> |
| 56 | </includes> |
| 57 | </fileset> |
| 58 | </filesets> |
| 59 | </configuration> |
| 60 | </plugin> |
| 61 | </plugins> |
| 62 | </build> |
| 63 | |
| 64 | <dependencies> |
| 65 | <dependency> |
| 66 | <groupId>junit</groupId> |
| 67 | <artifactId>junit</artifactId> |
| 68 | <version>4.8.1</version> |
| 69 | <scope>test</scope> |
| 70 | </dependency> |
| 71 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 72 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 73 | <artifactId>pregelix-dataflow-std-base</artifactId> |
vinayakb | 4a6309b | 2012-10-29 15:44:02 +0000 | [diff] [blame^] | 74 | <version>0.2.2</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 75 | <type>jar</type> |
| 76 | <scope>compile</scope> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>edu.uci.ics.hyracks</groupId> |
| 80 | <artifactId>hyracks-dataflow-std</artifactId> |
vinayakb | 4a6309b | 2012-10-29 15:44:02 +0000 | [diff] [blame^] | 81 | <version>0.2.2</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 82 | <type>jar</type> |
| 83 | <scope>compile</scope> |
| 84 | </dependency> |
| 85 | <dependency> |
| 86 | <groupId>edu.uci.ics.hyracks</groupId> |
| 87 | <artifactId>hyracks-api</artifactId> |
vinayakb | 4a6309b | 2012-10-29 15:44:02 +0000 | [diff] [blame^] | 88 | <version>0.2.2</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 89 | <type>jar</type> |
| 90 | <scope>compile</scope> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>edu.uci.ics.hyracks</groupId> |
| 94 | <artifactId>hyracks-dataflow-common</artifactId> |
vinayakb | 4a6309b | 2012-10-29 15:44:02 +0000 | [diff] [blame^] | 95 | <version>0.2.2</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 96 | <type>jar</type> |
| 97 | <scope>compile</scope> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 101 | <artifactId>hyracks-data-std</artifactId> |
vinayakb | 4a6309b | 2012-10-29 15:44:02 +0000 | [diff] [blame^] | 102 | <version>0.2.2</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.apache.hadoop</groupId> |
| 106 | <artifactId>hadoop-core</artifactId> |
| 107 | <version>0.20.2</version> |
| 108 | <type>jar</type> |
| 109 | <scope>compile</scope> |
| 110 | </dependency> |
| 111 | <dependency> |
| 112 | <groupId>edu.uci.ics.hyracks</groupId> |
| 113 | <artifactId>hyracks-storage-am-common</artifactId> |
vinayakb | 4a6309b | 2012-10-29 15:44:02 +0000 | [diff] [blame^] | 114 | <version>0.2.2</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 115 | <type>jar</type> |
| 116 | <scope>compile</scope> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>edu.uci.ics.hyracks</groupId> |
| 120 | <artifactId>hyracks-storage-am-btree</artifactId> |
vinayakb | 4a6309b | 2012-10-29 15:44:02 +0000 | [diff] [blame^] | 121 | <version>0.2.2</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 122 | <type>jar</type> |
| 123 | <scope>compile</scope> |
| 124 | </dependency> |
| 125 | <dependency> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 126 | <groupId>edu.uci.ics.hyracks</groupId> |
| 127 | <artifactId>hyracks-control-cc</artifactId> |
vinayakb | 4a6309b | 2012-10-29 15:44:02 +0000 | [diff] [blame^] | 128 | <version>0.2.2</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 129 | <type>jar</type> |
| 130 | <scope>compile</scope> |
| 131 | </dependency> |
| 132 | <dependency> |
| 133 | <groupId>edu.uci.ics.hyracks</groupId> |
| 134 | <artifactId>hyracks-control-nc</artifactId> |
vinayakb | 4a6309b | 2012-10-29 15:44:02 +0000 | [diff] [blame^] | 135 | <version>0.2.2</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 136 | <type>jar</type> |
| 137 | <scope>compile</scope> |
| 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 141 | <artifactId>hyracks-ipc</artifactId> |
vinayakb | 4a6309b | 2012-10-29 15:44:02 +0000 | [diff] [blame^] | 142 | <version>0.2.2</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 143 | <type>jar</type> |
| 144 | <scope>compile</scope> |
| 145 | </dependency> |
| 146 | </dependencies> |
| 147 | </project> |