zheilbron | 4b74391 | 2012-07-06 21:37:30 +0000 | [diff] [blame] | 1 | |
zheilbron | c544195 | 2012-10-02 05:00:15 +0000 | [diff] [blame] | 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"> |
alexander.behm | a0cbaf8 | 2012-08-21 08:49:13 +0000 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <groupId>edu.uci.ics.hyracks</groupId> |
| 5 | <artifactId>hyracks</artifactId> |
zheilbron | d974a5b | 2012-10-02 02:01:06 +0000 | [diff] [blame] | 6 | <version>0.2.2-SNAPSHOT</version> |
alexander.behm | a0cbaf8 | 2012-08-21 08:49:13 +0000 | [diff] [blame] | 7 | <packaging>pom</packaging> |
vinayakb | 7ff0f4a | 2010-06-17 19:41:17 +0000 | [diff] [blame] | 8 | |
alexander.behm | a0cbaf8 | 2012-08-21 08:49:13 +0000 | [diff] [blame] | 9 | <properties> |
zheilbron | d974a5b | 2012-10-02 02:01:06 +0000 | [diff] [blame] | 10 | <jvm.extraargs /> |
alexander.behm | a0cbaf8 | 2012-08-21 08:49:13 +0000 | [diff] [blame] | 11 | </properties> |
vinayakb | e663f9c | 2010-08-19 18:39:26 +0000 | [diff] [blame] | 12 | |
alexander.behm | a0cbaf8 | 2012-08-21 08:49:13 +0000 | [diff] [blame] | 13 | <build> |
| 14 | <plugins> |
| 15 | <plugin> |
| 16 | <groupId>org.apache.maven.plugins</groupId> |
| 17 | <artifactId>maven-release-plugin</artifactId> |
| 18 | <version>2.0</version> |
| 19 | <configuration> |
| 20 | <goals>package source:jar javadoc:jar deploy:deploy</goals> |
| 21 | </configuration> |
| 22 | </plugin> |
| 23 | <plugin> |
| 24 | <groupId>org.codehaus.mojo</groupId> |
| 25 | <artifactId>versions-maven-plugin</artifactId> |
| 26 | <version>1.2</version> |
| 27 | </plugin> |
| 28 | <plugin> |
| 29 | <groupId>org.apache.maven.plugins</groupId> |
| 30 | <artifactId>maven-surefire-plugin</artifactId> |
| 31 | <configuration> |
| 32 | <forkMode>pertest</forkMode> |
| 33 | <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> |
| 34 | </configuration> |
| 35 | </plugin> |
| 36 | </plugins> |
| 37 | </build> |
vinayakb | 2b1ef15 | 2010-08-19 20:09:01 +0000 | [diff] [blame] | 38 | |
alexander.behm | a0cbaf8 | 2012-08-21 08:49:13 +0000 | [diff] [blame] | 39 | <scm> |
| 40 | <connection>scm:svn:https://hyracks.googlecode.com/svn/trunk/hyracks</connection> |
| 41 | <developerConnection>scm:svn:https://hyracks.googlecode.com/svn/trunk/hyracks</developerConnection> |
| 42 | <url>http://code.google.com/p/hyracks/source/browse/#svn/trunk/hyracks</url> |
| 43 | </scm> |
vinayakb | 5e5ec2a | 2010-08-30 05:29:10 +0000 | [diff] [blame] | 44 | |
alexander.behm | a0cbaf8 | 2012-08-21 08:49:13 +0000 | [diff] [blame] | 45 | <distributionManagement> |
| 46 | <repository> |
| 47 | <id>hyracks-releases</id> |
| 48 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url> |
| 49 | </repository> |
| 50 | <snapshotRepository> |
| 51 | <id>hyracks-snapshots</id> |
| 52 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url> |
| 53 | </snapshotRepository> |
| 54 | </distributionManagement> |
vinayakb | be6efa1 | 2010-09-01 07:30:07 +0000 | [diff] [blame] | 55 | |
alexander.behm | a0cbaf8 | 2012-08-21 08:49:13 +0000 | [diff] [blame] | 56 | <reporting> |
| 57 | <plugins> |
| 58 | <plugin> |
| 59 | <groupId>org.apache.maven.plugins</groupId> |
| 60 | <artifactId>maven-changelog-plugin</artifactId> |
| 61 | </plugin> |
| 62 | </plugins> |
| 63 | </reporting> |
salsubaiee | bb6a829 | 2011-08-04 19:14:38 +0000 | [diff] [blame] | 64 | |
alexander.behm | a0cbaf8 | 2012-08-21 08:49:13 +0000 | [diff] [blame] | 65 | <repositories> |
| 66 | <repository> |
| 67 | <id>hyracks-public</id> |
| 68 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 69 | </repository> |
| 70 | <repository> |
| 71 | <id>jboss-public</id> |
| 72 | <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| 73 | </repository> |
| 74 | </repositories> |
zheilbron | 8dc5b91 | 2012-08-19 20:48:06 +0000 | [diff] [blame] | 75 | |
alexander.behm | a0cbaf8 | 2012-08-21 08:49:13 +0000 | [diff] [blame] | 76 | <pluginRepositories> |
| 77 | <pluginRepository> |
| 78 | <id>hyracks-public</id> |
| 79 | <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| 80 | <releases> |
| 81 | <updatePolicy>always</updatePolicy> |
| 82 | </releases> |
| 83 | </pluginRepository> |
| 84 | </pluginRepositories> |
zheilbron | 8dc5b91 | 2012-08-19 20:48:06 +0000 | [diff] [blame] | 85 | |
alexander.behm | a0cbaf8 | 2012-08-21 08:49:13 +0000 | [diff] [blame] | 86 | <modules> |
| 87 | <module>hyracks-ipc</module> |
| 88 | <module>hyracks-api</module> |
| 89 | <module>hyracks-dataflow-common</module> |
| 90 | <module>hyracks-dataflow-std</module> |
| 91 | <module>hyracks-dataflow-hadoop</module> |
| 92 | <module>hyracks-control</module> |
| 93 | <module>hyracks-net</module> |
| 94 | <module>hyracks-data</module> |
| 95 | <module>hyracks-cli</module> |
| 96 | <module>hyracks-storage-common</module> |
| 97 | <module>hyracks-storage-am-common</module> |
| 98 | <module>hyracks-storage-am-btree</module> |
| 99 | <module>hyracks-storage-am-lsm-invertedindex</module> |
| 100 | <module>hyracks-storage-am-lsm-common</module> |
| 101 | <module>hyracks-storage-am-lsm-btree</module> |
| 102 | <module>hyracks-storage-am-lsm-rtree</module> |
| 103 | <module>hyracks-storage-am-rtree</module> |
| 104 | <module>hyracks-test-support</module> |
| 105 | <module>hyracks-tests</module> |
| 106 | <module>hyracks-server</module> |
| 107 | <module>hyracks-examples</module> |
| 108 | <module>hyracks-documentation</module> |
| 109 | <module>hyracks-hadoop-compat</module> |
| 110 | <module>hyracks-algebricks</module> |
| 111 | <!--module>hyracks-yarn</module --> |
| 112 | <module>hyracks-maven-plugins</module> |
| 113 | </modules> |
vinayakb | 7ff0f4a | 2010-06-17 19:41:17 +0000 | [diff] [blame] | 114 | </project> |