diff options
author | Robert Varga <nite@hq.sk> | 2016-02-02 18:41:29 +0100 |
---|---|---|
committer | Robert Varga <nite@hq.sk> | 2016-02-02 18:41:29 +0100 |
commit | b9be896b820051166d048801ca2c559a8dca5561 (patch) | |
tree | 27b13f6b9780ea20a8f59f488948d58e316a3c0c | |
parent | b139087602d3b3720185f7153a9ae26402f34764 (diff) |
Another stab at the merge job failing
Change-Id: I930a6bb258578837ca220ce0dd1048500c8f284d
Signed-off-by: Robert Varga <nite@hq.sk>
-rw-r--r-- | pom.xml | 37 |
1 files changed, 17 insertions, 20 deletions
@@ -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> |