summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Varga <nite@hq.sk>2016-02-02 18:41:29 +0100
committerRobert Varga <nite@hq.sk>2016-02-02 18:41:29 +0100
commitb9be896b820051166d048801ca2c559a8dca5561 (patch)
tree27b13f6b9780ea20a8f59f488948d58e316a3c0c
parentb139087602d3b3720185f7153a9ae26402f34764 (diff)
Another stab at the merge job failing
Change-Id: I930a6bb258578837ca220ce0dd1048500c8f284d Signed-off-by: Robert Varga <nite@hq.sk>
-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>