vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 1 | |
| 2 | <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/maven-v4_0_0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <groupId>edu.uci.ics.hyracks</groupId> |
| 5 | <artifactId>hyracks</artifactId> |
vinayakb | 575edbe | 2012-10-29 15:46:12 +0000 | [diff] [blame^] | 6 | <version>0.2.3-SNAPSHOT</version> |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 7 | <packaging>pom</packaging> |
| 8 | <name>hyracks</name> |
| 9 | |
| 10 | <properties> |
| 11 | <jvm.extraargs /> |
| 12 | </properties> |
| 13 | |
| 14 | <profiles> |
| 15 | <profile> |
| 16 | <id>macosx</id> |
| 17 | <activation> |
| 18 | <os> |
| 19 | <name>mac os x</name> |
| 20 | </os> |
| 21 | <jdk>1.7</jdk> |
| 22 | </activation> |
| 23 | <properties> |
| 24 | <jvm.extraargs>-Djava.nio.channels.spi.SelectorProvider=sun.nio.ch.KQueueSelectorProvider</jvm.extraargs> |
| 25 | </properties> |
| 26 | </profile> |
| 27 | </profiles> |
| 28 | |
| 29 | <build> |
| 30 | <plugins> |
| 31 | <plugin> |
| 32 | <groupId>org.apache.maven.plugins</groupId> |
| 33 | <artifactId>maven-release-plugin</artifactId> |
| 34 | <version>2.0</version> |
| 35 | <configuration> |
| 36 | <goals>package source:jar javadoc:jar deploy:deploy</goals> |
| 37 | </configuration> |
| 38 | </plugin> |
| 39 | <plugin> |
| 40 | <groupId>org.codehaus.mojo</groupId> |
| 41 | <artifactId>versions-maven-plugin</artifactId> |
| 42 | <version>1.2</version> |
| 43 | </plugin> |
| 44 | <plugin> |
| 45 | <groupId>org.apache.maven.plugins</groupId> |
| 46 | <artifactId>maven-surefire-plugin</artifactId> |
| 47 | <configuration> |
| 48 | <forkMode>pertest</forkMode> |
| 49 | <argLine>-enableassertions -Djava.util.logging.config.file=${user.home}/logging.properties -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n ${jvm.extraargs}</argLine> |
| 50 | </configuration> |
| 51 | </plugin> |
| 52 | </plugins> |
| 53 | </build> |
| 54 | |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 55 | <reporting> |
| 56 | <plugins> |
| 57 | <plugin> |
| 58 | <groupId>org.apache.maven.plugins</groupId> |
| 59 | <artifactId>maven-changelog-plugin</artifactId> |
| 60 | </plugin> |
| 61 | </plugins> |
| 62 | </reporting> |
| 63 | |
vinayakb | 26a3173 | 2012-10-29 15:39:22 +0000 | [diff] [blame] | 64 | <distributionManagement> |
| 65 | <repository> |
| 66 | <id>hyracks-releases</id> |
| 67 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url> |
| 68 | </repository> |
| 69 | <snapshotRepository> |
| 70 | <id>hyracks-snapshots</id> |
| 71 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url> |
| 72 | </snapshotRepository> |
| 73 | </distributionManagement> |
| 74 | |
vinayakb | 59d505d | 2012-10-29 10:38:02 +0000 | [diff] [blame] | 75 | <repositories> |
| 76 | <repository> |
| 77 | <id>hyracks-public</id> |
| 78 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 79 | </repository> |
| 80 | <repository> |
| 81 | <id>jboss-public</id> |
| 82 | <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| 83 | </repository> |
| 84 | </repositories> |
| 85 | |
| 86 | <pluginRepositories> |
| 87 | <pluginRepository> |
| 88 | <id>hyracks-public</id> |
| 89 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 90 | <releases> |
| 91 | <updatePolicy>always</updatePolicy> |
| 92 | </releases> |
| 93 | </pluginRepository> |
| 94 | </pluginRepositories> |
| 95 | |
| 96 | <modules> |
| 97 | <module>hyracks-ipc</module> |
| 98 | <module>hyracks-api</module> |
| 99 | <module>hyracks-dataflow-common</module> |
| 100 | <module>hyracks-dataflow-std</module> |
| 101 | <module>hyracks-dataflow-hadoop</module> |
| 102 | <module>hyracks-control</module> |
| 103 | <module>hyracks-net</module> |
| 104 | <module>hyracks-data</module> |
| 105 | <module>hyracks-cli</module> |
| 106 | <module>hyracks-storage-common</module> |
| 107 | <module>hyracks-storage-am-common</module> |
| 108 | <module>hyracks-storage-am-btree</module> |
| 109 | <module>hyracks-storage-am-invertedindex</module> |
| 110 | <module>hyracks-storage-am-rtree</module> |
| 111 | <module>hyracks-test-support</module> |
| 112 | <module>hyracks-tests</module> |
| 113 | <module>hyracks-server</module> |
| 114 | <module>hyracks-examples</module> |
| 115 | <module>hyracks-documentation</module> |
| 116 | <module>hyracks-hadoop-compat</module> |
| 117 | <!--module>hyracks-yarn</module--> |
| 118 | <module>hyracks-maven-plugins</module> |
| 119 | </modules> |
| 120 | </project> |