Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Leicht Vogt2013-04-10 05:26:22 +0000
committerStephan Leicht Vogt2013-04-10 05:28:18 +0000
commit28eaa2973cd996ba5f9d026b3dc1845a51591afa (patch)
tree982c84225d3102989ecedc7132f6075c0fec7734
parent4e4c8a82453fda67e2c882dd73e3aa01ca692684 (diff)
downloadorg.eclipse.scout.rt-28eaa2973cd996ba5f9d026b3dc1845a51591afa.tar.gz
org.eclipse.scout.rt-28eaa2973cd996ba5f9d026b3dc1845a51591afa.tar.xz
org.eclipse.scout.rt-28eaa2973cd996ba5f9d026b3dc1845a51591afa.zip
RESOLVED - bug 405310: Repository for Eclipse Scout
https://bugs.eclipse.org/bugs/show_bug.cgi?id=405310 Adds Repository Information to be able to download parent poms from the eclipse.org repo. Change-Id: I7fc83743205c8a031409ff5a0465b31756044b51
-rw-r--r--pom.xml37
1 files changed, 35 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 7a9bba998a..93d6e5cbe3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012 BSI Business Systems Integration AG.
+ Copyright (c) 2012,2013 BSI Business Systems Integration AG.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
@@ -9,7 +9,6 @@
Contributors:
Stephan Leicht Vogt - initial implementation
-->
-
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
@@ -34,6 +33,40 @@
<tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/scout/org.eclipse.scout.rt.git</tycho.scmUrl>
</properties>
+ <repositories>
+ <repository>
+ <id>eclipse.release</id>
+ <name>eclipse-release-repo</name>
+ <url>https://repo.eclipse.org/content/groups/releases/</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+ <repository>
+ <id>eclipse.snapshot</id>
+ <name>eclipse-snapshot-repo</name>
+ <url>https://repo.eclipse.org/content/groups/snapshots/</url>
+ <snapshots />
+ </repository>
+ </repositories>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>eclipse.release</id>
+ <name>eclipse-release-repo</name>
+ <url>https://repo.eclipse.org/content/groups/releases/</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </pluginRepository>
+ <pluginRepository>
+ <id>eclipse.snapshot</id>
+ <name>eclipse-snapshot-repo</name>
+ <url>https://repo.eclipse.org/content/groups/snapshots/</url>
+ <snapshots />
+ </pluginRepository>
+ </pluginRepositories>
+
<modules>
<module>org.eclipse.scout.rt.parent</module>
</modules>

Back to the top