Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMat Booth2016-10-14 12:45:38 +0000
committerMat Booth2016-10-14 12:49:40 +0000
commitac4a8c63028a26fd43f162e445d718e6b27a802d (patch)
tree5d06b57c7bcd3a0f1765fc0f97e2a0db6b8bf18f
parent140633a39e4d4131389072c30444ecfb103e3bab (diff)
downloadorg.eclipse.ecf-ac4a8c63028a26fd43f162e445d718e6b27a802d.tar.gz
org.eclipse.ecf-ac4a8c63028a26fd43f162e445d718e6b27a802d.tar.xz
org.eclipse.ecf-ac4a8c63028a26fd43f162e445d718e6b27a802d.zip
Bug 455300 - Add ECF maven repository definitions
Needed to routinely deploy artifacts to repo.eclipse.org Change-Id: Ie3eec6f30f642433eb1b46d63eebe152b3a1393c Signed-off-by: Mat Booth <mat.booth@redhat.com>
-rw-r--r--pom.xml15
1 files changed, 14 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 385f709a9..767c9eed5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,6 @@
<maven>3.1.1</maven>
</prerequisites>
-
<licenses>
<license>
<name>Eclipse Public License v1.0</name>
@@ -44,6 +43,20 @@
<system>Bugzilla</system>
</issueManagement>
+ <distributionManagement>
+ <repository>
+ <id>repo.eclipse.org</id>
+ <name>ECF Maven Repository - Releases</name>
+ <url>https://repo.eclipse.org/content/repositories/ecf-releases/</url>
+ </repository>
+ <snapshotRepository>
+ <id>repo.eclipse.org</id>
+ <name>ECF Maven Repository - Snapshots</name>
+ <url>https://repo.eclipse.org/content/repositories/ecf-snapshots/</url>
+ <uniqueVersion>true</uniqueVersion>
+ </snapshotRepository>
+ </distributionManagement>
+
<properties>
<tycho-version>0.26.0</tycho-version>
<cbi-version>1.1.3</cbi-version>

Back to the top