Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2013-05-29 07:32:35 +0000
committerMatthias Sohn2013-05-29 07:32:35 +0000
commit186ad7b9f78f6d0074ae1636229ec5dc21ce1bb1 (patch)
treeb5cc59dfd43d1b663a083b012c69f66e2f00f2cd
parentc00acf6f0be1f4b0c19a24c8785cb171e7f7121e (diff)
downloadegit-github-186ad7b9f78f6d0074ae1636229ec5dc21ce1bb1.tar.gz
egit-github-186ad7b9f78f6d0074ae1636229ec5dc21ce1bb1.tar.xz
egit-github-186ad7b9f78f6d0074ae1636229ec5dc21ce1bb1.zip
Add Nexus repositories for distribution managementv3.0.0.201305282000-rc2
Also fix profile names Change-Id: I20204b9676cda707b61d0d1de6fc548fca089746 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r--pom.xml18
1 files changed, 16 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 98d01577..3de799cd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -225,7 +225,7 @@
<profiles>
<profile>
- <id>platform-helios</id>
+ <id>platform-juno</id>
<activation>
<property>
<name>platform-version-name</name>
@@ -238,7 +238,7 @@
</properties>
</profile>
<profile>
- <id>platform-indigo</id>
+ <id>platform-kepler</id>
<activation>
<property>
<name>platform-version-name</name>
@@ -266,4 +266,18 @@
</build>
</profile>
</profiles>
+
+ <distributionManagement>
+ <repository>
+ <id>repo.eclipse.org</id>
+ <name>EGit Maven Repository - Releases</name>
+ <url>https://repo.eclipse.org/content/repositories/egit-releases/</url>
+ </repository>
+ <snapshotRepository>
+ <id>repo.eclipse.org</id>
+ <name>EGit Maven Repository - Snapshots</name>
+ <url>https://repo.eclipse.org/content/repositories/egit-snapshots/</url>
+ <uniqueVersion>true</uniqueVersion>
+ </snapshotRepository>
+ </distributionManagement>
</project>

Back to the top