summaryrefslogtreecommitdiffstats
path: root/common/impl-parent
diff options
context:
space:
mode:
authorRobert Varga <nite@hq.sk>2016-02-02 17:36:27 +0100
committerRobert Varga <nite@hq.sk>2016-02-02 17:43:03 +0100
commitb139087602d3b3720185f7153a9ae26402f34764 (patch)
treec5dbf2dcbac7c2ed5d20578f719212b9ad598f46 /common/impl-parent
parent136b9074bc3a49fbbb86699eec6458d7f4d7ba7f (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/impl-parent')
-rw-r--r--common/impl-parent/pom.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/common/impl-parent/pom.xml b/common/impl-parent/pom.xml
index ac17c8a34..f7eca59ef 100644
--- a/common/impl-parent/pom.xml
+++ b/common/impl-parent/pom.xml
@@ -28,9 +28,12 @@
<artifactId>impl-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
+
<properties>
<checkstyle.header.file>APACHE_HEADER.txt</checkstyle.header.file>
+ <nexusproxy>http://nexus.fd.io/content</nexusproxy>
</properties>
+
<build>
<plugins>
<plugin>
@@ -60,4 +63,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>