diff options
author | Robert Varga <nite@hq.sk> | 2016-02-02 17:36:27 +0100 |
---|---|---|
committer | Robert Varga <nite@hq.sk> | 2016-02-02 17:43:03 +0100 |
commit | b139087602d3b3720185f7153a9ae26402f34764 (patch) | |
tree | c5dbf2dcbac7c2ed5d20578f719212b9ad598f46 /common/it-parent | |
parent | 136b9074bc3a49fbbb86699eec6458d7f4d7ba7f (diff) |
Add distributionManagement
We have deploy failures, this should fix them.
Change-Id: I2505ab3d9bfadc6fbc9ce4305c164aaf7bbbc0f4
Signed-off-by: Robert Varga <nite@hq.sk>
Diffstat (limited to 'common/it-parent')
-rw-r--r-- | common/it-parent/pom.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/common/it-parent/pom.xml b/common/it-parent/pom.xml index 9272cc4a8..3d756ffcf 100644 --- a/common/it-parent/pom.xml +++ b/common/it-parent/pom.xml @@ -23,6 +23,10 @@ <relativePath/> </parent> + <properties> + <nexusproxy>http://nexus.fd.io/content</nexusproxy> + </properties> + <modelVersion>4.0.0</modelVersion> <groupId>io.fd.honeycomb.common</groupId> <artifactId>it-parent</artifactId> @@ -57,4 +61,15 @@ </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> |