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-core</artifactId> |
| 4 | <packaging>jar</packaging> |
| 5 | <name>pregelix-core</name> |
| 6 | |
| 7 | <parent> |
buyingyi | 202af41 | 2012-10-08 23:07:09 +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 | 202af41 | 2012-10-08 23:07:09 +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> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame^] | 21 | <groupId>org.apache.maven.plugins</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 22 | <artifactId>maven-jar-plugin</artifactId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame^] | 23 | <version>2.3.2</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 24 | <executions> |
| 25 | <execution> |
| 26 | <id>balancer</id> |
| 27 | <goals> |
| 28 | <goal>jar</goal> |
| 29 | </goals> |
| 30 | <phase>package</phase> |
| 31 | <configuration> |
| 32 | <classifier>balancer</classifier> |
| 33 | <archive> |
| 34 | <manifest> |
buyingyi | 4dcab6a | 2012-10-09 21:37:52 +0000 | [diff] [blame] | 35 | <MainClass>edu.uci.ics.pregelix.core.util.DataBalancer</MainClass> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 36 | </manifest> |
| 37 | </archive> |
| 38 | <includes> |
buyingyi | 4dcab6a | 2012-10-09 21:37:52 +0000 | [diff] [blame] | 39 | <include>**/edu/uci/ics/pregelix/core/util/DataBalancer*</include> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 40 | </includes> |
| 41 | </configuration> |
| 42 | </execution> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 43 | <execution> |
| 44 | <id>generator</id> |
| 45 | <goals> |
| 46 | <goal>jar</goal> |
| 47 | </goals> |
| 48 | <phase>package</phase> |
| 49 | <configuration> |
| 50 | <classifier>generator</classifier> |
| 51 | <archive> |
| 52 | <manifest> |
buyingyi | 4dcab6a | 2012-10-09 21:37:52 +0000 | [diff] [blame] | 53 | <MainClass>edu.uci.ics.pregelix.core.util.DataGenerator</MainClass> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 54 | </manifest> |
| 55 | </archive> |
| 56 | <includes> |
buyingyi | 4dcab6a | 2012-10-09 21:37:52 +0000 | [diff] [blame] | 57 | <include>**/edu/uci/ics/pregelix/core/util/DataGenerator*</include> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 58 | </includes> |
| 59 | </configuration> |
| 60 | </execution> |
| 61 | </executions> |
| 62 | </plugin> |
| 63 | <plugin> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 64 | <groupId>org.apache.maven.plugins</groupId> |
| 65 | <artifactId>maven-compiler-plugin</artifactId> |
| 66 | <version>2.0.2</version> |
| 67 | <configuration> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 68 | <source>1.7</source> |
| 69 | <target>1.7</target> |
| 70 | <fork>true</fork> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 71 | </configuration> |
| 72 | </plugin> |
| 73 | <plugin> |
| 74 | <groupId>org.codehaus.mojo</groupId> |
| 75 | <artifactId>appassembler-maven-plugin</artifactId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame^] | 76 | <version>1.3</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 77 | <executions> |
| 78 | <execution> |
| 79 | <configuration> |
| 80 | <programs> |
| 81 | <program> |
| 82 | <mainClass>org.apache.hadoop.util.RunJar</mainClass> |
| 83 | <name>pregelix-obselete</name> |
| 84 | </program> |
| 85 | </programs> |
| 86 | <repositoryLayout>flat</repositoryLayout> |
| 87 | <repositoryName>lib</repositoryName> |
| 88 | </configuration> |
| 89 | <phase>package</phase> |
| 90 | <goals> |
| 91 | <goal>assemble</goal> |
| 92 | </goals> |
| 93 | </execution> |
| 94 | </executions> |
| 95 | </plugin> |
| 96 | <plugin> |
| 97 | <artifactId>maven-assembly-plugin</artifactId> |
| 98 | <version>2.2-beta-5</version> |
| 99 | <executions> |
| 100 | <execution> |
| 101 | <configuration> |
| 102 | <descriptors> |
| 103 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 104 | </descriptors> |
| 105 | </configuration> |
| 106 | <phase>package</phase> |
| 107 | <goals> |
| 108 | <goal>attached</goal> |
| 109 | </goals> |
| 110 | </execution> |
| 111 | </executions> |
| 112 | </plugin> |
| 113 | <plugin> |
| 114 | <artifactId>maven-resources-plugin</artifactId> |
| 115 | <version>2.5</version> |
| 116 | <executions> |
| 117 | <execution> |
| 118 | <id>copy-scripts</id> |
| 119 | <!-- here the phase you need --> |
| 120 | <phase>package</phase> |
| 121 | <goals> |
| 122 | <goal>copy-resources</goal> |
| 123 | </goals> |
| 124 | <configuration> |
| 125 | <outputDirectory>target/appassembler/bin</outputDirectory> |
| 126 | <resources> |
| 127 | <resource> |
| 128 | <directory>src/main/resources/scripts</directory> |
| 129 | </resource> |
| 130 | </resources> |
| 131 | </configuration> |
| 132 | </execution> |
| 133 | <execution> |
| 134 | <id>copy-conf</id> |
| 135 | <!-- here the phase you need --> |
| 136 | <phase>package</phase> |
| 137 | <goals> |
| 138 | <goal>copy-resources</goal> |
| 139 | </goals> |
| 140 | <configuration> |
| 141 | <outputDirectory>target/appassembler/conf</outputDirectory> |
| 142 | <resources> |
| 143 | <resource> |
| 144 | <directory>src/main/resources/conf</directory> |
| 145 | </resource> |
| 146 | </resources> |
| 147 | </configuration> |
| 148 | </execution> |
| 149 | </executions> |
| 150 | </plugin> |
| 151 | <plugin> |
| 152 | <groupId>org.apache.maven.plugins</groupId> |
| 153 | <artifactId>maven-surefire-plugin</artifactId> |
| 154 | <version>2.7.2</version> |
| 155 | <configuration> |
| 156 | <forkMode>pertest</forkMode> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 157 | <argLine>-enableassertions -Xmx512m -XX:MaxPermSize=300m |
| 158 | -Dfile.encoding=UTF-8 |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 159 | -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine> |
| 160 | <includes> |
| 161 | <include>**/*TestSuite.java</include> |
| 162 | <include>**/*Test.java</include> |
| 163 | </includes> |
| 164 | </configuration> |
| 165 | </plugin> |
| 166 | <plugin> |
| 167 | <artifactId>maven-clean-plugin</artifactId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame^] | 168 | <version>2.4.1</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 169 | <configuration> |
| 170 | <filesets> |
| 171 | <fileset> |
| 172 | <directory>.</directory> |
| 173 | <includes> |
| 174 | <include>teststore*</include> |
| 175 | <include>edu*</include> |
| 176 | <include>actual*</include> |
| 177 | <include>build*</include> |
| 178 | <include>expect*</include> |
| 179 | <include>ClusterController*</include> |
| 180 | </includes> |
| 181 | </fileset> |
| 182 | </filesets> |
| 183 | </configuration> |
| 184 | </plugin> |
| 185 | </plugins> |
| 186 | </build> |
| 187 | |
| 188 | <dependencies> |
| 189 | <dependency> |
| 190 | <groupId>junit</groupId> |
| 191 | <artifactId>junit</artifactId> |
| 192 | <version>4.8.1</version> |
| 193 | <scope>test</scope> |
| 194 | </dependency> |
| 195 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 196 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 197 | <artifactId>pregelix-api</artifactId> |
vinayakb | 6952551 | 2013-03-25 03:17:32 +0000 | [diff] [blame] | 198 | <version>0.2.4-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 199 | <type>jar</type> |
| 200 | <scope>compile</scope> |
| 201 | </dependency> |
| 202 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 203 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 204 | <artifactId>pregelix-dataflow-std</artifactId> |
vinayakb | 6952551 | 2013-03-25 03:17:32 +0000 | [diff] [blame] | 205 | <version>0.2.4-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 206 | <type>jar</type> |
| 207 | <scope>compile</scope> |
| 208 | </dependency> |
| 209 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 210 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 211 | <artifactId>pregelix-dataflow</artifactId> |
vinayakb | 6952551 | 2013-03-25 03:17:32 +0000 | [diff] [blame] | 212 | <version>0.2.4-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 213 | <type>jar</type> |
| 214 | <scope>compile</scope> |
| 215 | </dependency> |
| 216 | <dependency> |
| 217 | <groupId>edu.uci.ics.hyracks</groupId> |
| 218 | <artifactId>hyracks-dataflow-std</artifactId> |
vinayakb | 6952551 | 2013-03-25 03:17:32 +0000 | [diff] [blame] | 219 | <version>0.2.4-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 220 | <type>jar</type> |
| 221 | <scope>compile</scope> |
| 222 | </dependency> |
| 223 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 224 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 225 | <artifactId>pregelix-runtime</artifactId> |
vinayakb | 6952551 | 2013-03-25 03:17:32 +0000 | [diff] [blame] | 226 | <version>0.2.4-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 227 | <type>jar</type> |
| 228 | <scope>compile</scope> |
| 229 | </dependency> |
| 230 | <dependency> |
| 231 | <groupId>edu.uci.ics.hyracks</groupId> |
| 232 | <artifactId>hyracks-api</artifactId> |
vinayakb | 6952551 | 2013-03-25 03:17:32 +0000 | [diff] [blame] | 233 | <version>0.2.4-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 234 | <type>jar</type> |
| 235 | <scope>compile</scope> |
| 236 | </dependency> |
| 237 | <dependency> |
| 238 | <groupId>edu.uci.ics.hyracks</groupId> |
| 239 | <artifactId>hyracks-dataflow-common</artifactId> |
vinayakb | 6952551 | 2013-03-25 03:17:32 +0000 | [diff] [blame] | 240 | <version>0.2.4-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 241 | <type>jar</type> |
| 242 | <scope>compile</scope> |
| 243 | </dependency> |
| 244 | <dependency> |
| 245 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 246 | <artifactId>hyracks-data-std</artifactId> |
vinayakb | 6952551 | 2013-03-25 03:17:32 +0000 | [diff] [blame] | 247 | <version>0.2.4-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 248 | <type>jar</type> |
| 249 | <scope>compile</scope> |
| 250 | </dependency> |
| 251 | <dependency> |
| 252 | <groupId>edu.uci.ics.hyracks</groupId> |
| 253 | <artifactId>hyracks-storage-am-common</artifactId> |
vinayakb | 6952551 | 2013-03-25 03:17:32 +0000 | [diff] [blame] | 254 | <version>0.2.4-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 255 | <type>jar</type> |
| 256 | <scope>compile</scope> |
| 257 | </dependency> |
| 258 | <dependency> |
| 259 | <groupId>edu.uci.ics.hyracks</groupId> |
| 260 | <artifactId>hyracks-storage-am-btree</artifactId> |
vinayakb | 6952551 | 2013-03-25 03:17:32 +0000 | [diff] [blame] | 261 | <version>0.2.4-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 262 | <type>jar</type> |
| 263 | <scope>compile</scope> |
| 264 | </dependency> |
| 265 | <dependency> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 266 | <groupId>edu.uci.ics.hyracks</groupId> |
| 267 | <artifactId>hyracks-control-cc</artifactId> |
vinayakb | 6952551 | 2013-03-25 03:17:32 +0000 | [diff] [blame] | 268 | <version>0.2.4-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 269 | <type>jar</type> |
| 270 | <scope>compile</scope> |
| 271 | </dependency> |
| 272 | <dependency> |
| 273 | <groupId>edu.uci.ics.hyracks</groupId> |
| 274 | <artifactId>hyracks-control-nc</artifactId> |
vinayakb | 6952551 | 2013-03-25 03:17:32 +0000 | [diff] [blame] | 275 | <version>0.2.4-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 276 | <type>jar</type> |
| 277 | <scope>compile</scope> |
| 278 | </dependency> |
| 279 | <dependency> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 280 | <groupId>com.kenai.nbpwr</groupId> |
| 281 | <artifactId>org-apache-commons-io</artifactId> |
| 282 | <version>1.3.1-201002241208</version> |
| 283 | <type>nbm</type> |
| 284 | <scope>test</scope> |
| 285 | </dependency> |
| 286 | <dependency> |
| 287 | <groupId>edu.uci.ics.hyracks.examples</groupId> |
| 288 | <artifactId>hyracks-integration-tests</artifactId> |
vinayakb | 6952551 | 2013-03-25 03:17:32 +0000 | [diff] [blame] | 289 | <version>0.2.4-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 290 | <scope>test</scope> |
| 291 | </dependency> |
| 292 | <dependency> |
| 293 | <groupId>com.sun.jersey</groupId> |
| 294 | <artifactId>jersey</artifactId> |
| 295 | <version>0.8-ea</version> |
| 296 | <type>jar</type> |
| 297 | <scope>test</scope> |
| 298 | </dependency> |
| 299 | <dependency> |
| 300 | <groupId>javax.servlet</groupId> |
| 301 | <artifactId>javax.servlet-api</artifactId> |
| 302 | <version>3.0.1</version> |
| 303 | <type>jar</type> |
| 304 | <scope>compile</scope> |
| 305 | </dependency> |
| 306 | <dependency> |
| 307 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 308 | <artifactId>hyracks-ipc</artifactId> |
vinayakb | 6952551 | 2013-03-25 03:17:32 +0000 | [diff] [blame] | 309 | <version>0.2.4-SNAPSHOT</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 310 | <type>jar</type> |
| 311 | <scope>compile</scope> |
| 312 | </dependency> |
| 313 | </dependencies> |
| 314 | </project> |