summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pom.xml37
1 files changed, 17 insertions, 20 deletions
diff --git a/pom.xml b/pom.xml
index 43aa04472..58ed81ab6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -15,38 +15,35 @@
-->
<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">
-<groupId>io.fd.honeycomb</groupId>
+ <properties>
+ <nexusproxy>http://nexus.fd.io/content</nexusproxy>
+ </properties>
+
+ <groupId>io.fd.honeycomb</groupId>
<artifactId>honeycomb-aggregator</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>honeycomb</name>
<packaging>pom</packaging>
<modelVersion>4.0.0</modelVersion>
+
<prerequisites>
<maven>3.1.1</maven>
</prerequisites>
+
<modules>
<module>common</module>
<module>v3po</module>
<module>vbd</module>
</modules>
- <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-install-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- </plugins>
- </build>
+ <distributionManagement>
+ <repository>
+ <id>fdio-release</id>
+ <url>${nexusproxy}/repositories/fd.io.release/</url>
+ </repository>
+ <snapshotRepository>
+ <id>fdio-snapshot</id>
+ <url>${nexusproxy}/repositories/fd.io.dev/</url>
+ </snapshotRepository>
+ </distributionManagement>
</project>