vinayakb | b4a38c0 | 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"> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <artifactId>pregelix-runtime</artifactId> |
| 4 | <packaging>jar</packaging> |
| 5 | <name>pregelix-runtime</name> |
| 6 | |
| 7 | <parent> |
| 8 | <groupId>edu.uci.ics.hyracks</groupId> |
| 9 | <artifactId>pregelix</artifactId> |
vinayakb | a81424a | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 10 | <version>0.2.4</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +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> |
buyingyi | 5df938f | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 25 | <source>1.7</source> |
| 26 | <target>1.7</target> |
| 27 | <fork>true</fork> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +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> |
| 36 | <argLine>-enableassertions -Xmx512m -Dfile.encoding=UTF-8 |
| 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> |
vinayakb | 5d0e459 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 45 | <groupId>org.apache.maven.plugins</groupId> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 46 | <artifactId>maven-clean-plugin</artifactId> |
vinayakb | 5d0e459 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 47 | <version>2.4.1</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +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> |
| 69 | <groupId>junit</groupId> |
| 70 | <artifactId>junit</artifactId> |
| 71 | <version>4.8.1</version> |
| 72 | <scope>test</scope> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>edu.uci.ics.hyracks</groupId> |
| 76 | <artifactId>pregelix-api</artifactId> |
vinayakb | a81424a | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 77 | <version>0.2.4</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 78 | <type>jar</type> |
| 79 | <scope>compile</scope> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>edu.uci.ics.hyracks</groupId> |
| 83 | <artifactId>pregelix-dataflow-std</artifactId> |
vinayakb | a81424a | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 84 | <version>0.2.4</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 85 | <type>jar</type> |
| 86 | <scope>compile</scope> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>edu.uci.ics.hyracks</groupId> |
| 90 | <artifactId>pregelix-dataflow</artifactId> |
vinayakb | a81424a | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 91 | <version>0.2.4</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +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> |
vinayakb | a81424a | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 98 | <version>0.2.4</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +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> |
vinayakb | a81424a | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 105 | <version>0.2.4</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +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> |
vinayakb | a81424a | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 112 | <version>0.2.4</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 113 | <type>jar</type> |
| 114 | <scope>compile</scope> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>edu.uci.ics.hyracks</groupId> |
| 118 | <artifactId>hyracks-data-std</artifactId> |
vinayakb | a81424a | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 119 | <version>0.2.4</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 120 | </dependency> |
| 121 | <dependency> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 122 | <groupId>edu.uci.ics.hyracks</groupId> |
| 123 | <artifactId>hyracks-storage-am-common</artifactId> |
vinayakb | a81424a | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 124 | <version>0.2.4</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 125 | <type>jar</type> |
| 126 | <scope>compile</scope> |
| 127 | </dependency> |
| 128 | <dependency> |
| 129 | <groupId>edu.uci.ics.hyracks</groupId> |
| 130 | <artifactId>hyracks-storage-am-btree</artifactId> |
vinayakb | a81424a | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 131 | <version>0.2.4</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 132 | <type>jar</type> |
| 133 | <scope>compile</scope> |
| 134 | </dependency> |
| 135 | <dependency> |
| 136 | <groupId>edu.uci.ics.hyracks</groupId> |
| 137 | <artifactId>hyracks-control-cc</artifactId> |
vinayakb | a81424a | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 138 | <version>0.2.4</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 139 | <type>jar</type> |
| 140 | <scope>compile</scope> |
| 141 | </dependency> |
| 142 | <dependency> |
| 143 | <groupId>edu.uci.ics.hyracks</groupId> |
| 144 | <artifactId>hyracks-control-nc</artifactId> |
vinayakb | a81424a | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 145 | <version>0.2.4</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 146 | <type>jar</type> |
| 147 | <scope>compile</scope> |
| 148 | </dependency> |
| 149 | <dependency> |
| 150 | <groupId>edu.uci.ics.hyracks</groupId> |
| 151 | <artifactId>hyracks-ipc</artifactId> |
vinayakb | a81424a | 2013-04-06 19:21:13 +0000 | [diff] [blame^] | 152 | <version>0.2.4</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 153 | <type>jar</type> |
| 154 | <scope>compile</scope> |
| 155 | </dependency> |
| 156 | </dependencies> |
| 157 | </project> |