Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorQuentin Le Menez2018-10-19 08:06:07 +0000
committerQuentin Le Menez2018-10-19 08:52:01 +0000
commit072e1fd8c984b4a2bbf74835b012fcd186297c39 (patch)
tree5b6bec97c69f3fff6ca577e39305395a4e37fb9e /releng
parent50d8e30590f967ded03041be10e8cbcfc2414a76 (diff)
downloadorg.eclipse.papyrus-072e1fd8c984b4a2bbf74835b012fcd186297c39.tar.gz
org.eclipse.papyrus-072e1fd8c984b4a2bbf74835b012fcd186297c39.tar.xz
org.eclipse.papyrus-072e1fd8c984b4a2bbf74835b012fcd186297c39.zip
Bug 539022 - [Releng] Update repositories in pom.xml files
- Moved Jobss to the p2 in order to prevent maven from using it by default Change-Id: Id6e789880db81e2c913bed193176ead6c17a1b3a Signed-off-by: Quentin Le Menez <quentin.lemenez@cea.fr>
Diffstat (limited to 'releng')
-rw-r--r--releng/main/site/pom.xml9
-rw-r--r--releng/pom.xml21
-rw-r--r--releng/toolsmiths/site/pom.xml9
3 files changed, 29 insertions, 10 deletions
diff --git a/releng/main/site/pom.xml b/releng/main/site/pom.xml
index e5d11095548..832251a0683 100644
--- a/releng/main/site/pom.xml
+++ b/releng/main/site/pom.xml
@@ -14,6 +14,14 @@
<version>4.1.0-SNAPSHOT</version>
<packaging>eclipse-repository</packaging>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>org.jboss.tools.tycho-plugins</id>
+ <url>https://repository.jboss.org/</url>
+ </pluginRepository>
+ </pluginRepositories>
+
<build>
<plugins>
<plugin>
@@ -29,6 +37,7 @@
<plugin>
<groupId>org.jboss.tools.tycho-plugins</groupId>
<artifactId>repository-utils</artifactId>
+ <version>${jboss.utils.version}</version>
<executions>
<execution>
<phase>package</phase>
diff --git a/releng/pom.xml b/releng/pom.xml
index 71ca167b924..5eba39ce26c 100644
--- a/releng/pom.xml
+++ b/releng/pom.xml
@@ -45,6 +45,17 @@
<pluginRepositories>
<!-- https://repo.maven.apache.org/maven2/ is being fetched by default -->
+ <!-- pluginRepository>
+ <id>central</id>
+ <name>Central Repository</name>
+ <url>https://repo.maven.apache.org/maven2</url>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </pluginRepository -->
<pluginRepository>
<id>tycho-snapshots</id>
<url>https://repo.eclipse.org/content/repositories/tycho-snapshots/</url>
@@ -64,10 +75,6 @@
<id>eclipse.org-mylyn</id>
<url>https://repo.eclipse.org/content/repositories/mylyn/</url>
</pluginRepository>
- <pluginRepository>
- <id>org.jboss.tools.tycho-plugins</id>
- <url>https://repository.jboss.org/</url>
- </pluginRepository>
</pluginRepositories>
<repositories>
@@ -126,12 +133,6 @@
</plugin>
<plugin>
- <groupId>org.jboss.tools.tycho-plugins</groupId>
- <artifactId>repository-utils</artifactId>
- <version>${jboss.utils.version}</version>
- </plugin>
-
- <plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
diff --git a/releng/toolsmiths/site/pom.xml b/releng/toolsmiths/site/pom.xml
index 87481c34ba2..6613fbca79b 100644
--- a/releng/toolsmiths/site/pom.xml
+++ b/releng/toolsmiths/site/pom.xml
@@ -15,6 +15,14 @@
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-repository</packaging>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>org.jboss.tools.tycho-plugins</id>
+ <url>https://repository.jboss.org/</url>
+ </pluginRepository>
+ </pluginRepositories>
+
<build>
<plugins>
<plugin>
@@ -30,6 +38,7 @@
<plugin>
<groupId>org.jboss.tools.tycho-plugins</groupId>
<artifactId>repository-utils</artifactId>
+ <version>${jboss.utils.version}</version>
<executions>
<execution>
<phase>package</phase>

Back to the top