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