| |
| <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"> |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>edu.uci.ics.hyracks</groupId> |
| <artifactId>fullstack</artifactId> |
| <version>0.2.5-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| <name>hyracks-ecosystem-full-stack</name> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-release-plugin</artifactId> |
| <version>2.1</version> |
| <configuration> |
| <goals>package source:jar javadoc:jar deploy:deploy</goals> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>versions-maven-plugin</artifactId> |
| <version>1.2</version> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <scm> |
| <connection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack</connection> |
| <developerConnection>scm:svn:https://hyracks.googlecode.com/svn/trunk/fullstack</developerConnection> |
| <url>http://code.google.com/p/hyracks/source/browse/#svn/trunk/fullstack</url> |
| </scm> |
| |
| <distributionManagement> |
| <repository> |
| <id>hyracks-releases</id> |
| <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-releases/</url> |
| </repository> |
| <snapshotRepository> |
| <id>hyracks-snapshots</id> |
| <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-snapshots/</url> |
| </snapshotRepository> |
| </distributionManagement> |
| |
| <repositories> |
| <repository> |
| <id>hyracks-public</id> |
| <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| </repository> |
| <repository> |
| <id>jboss-public</id> |
| <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| </repository> |
| </repositories> |
| |
| <pluginRepositories> |
| <pluginRepository> |
| <id>hyracks-public</id> |
| <url>http://obelix.ics.uci.edu/nexus/content/groups/hyracks-public/</url> |
| <releases> |
| <updatePolicy>always</updatePolicy> |
| </releases> |
| </pluginRepository> |
| </pluginRepositories> |
| |
| <modules> |
| <module>hyracks</module> |
| <module>algebricks</module> |
| <module>pregelix</module> |
| <module>hivesterix</module> |
| </modules> |
| </project> |