Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuentin Le Menez2021-07-22 13:01:23 +0000
committerQuentin Le Menez2021-07-22 13:02:50 +0000
commit551f6714687eba0de4e8f7fc0ada15f32a67e46a (patch)
treef83b708101a4b5dce8e4a45a554f96400dd1c0ef /releng/main
parenta62e5240d90994dc14d45b4f586d648d9aa770a4 (diff)
downloadorg.eclipse.papyrus-551f6714687eba0de4e8f7fc0ada15f32a67e46a.tar.gz
org.eclipse.papyrus-551f6714687eba0de4e8f7fc0ada15f32a67e46a.tar.xz
org.eclipse.papyrus-551f6714687eba0de4e8f7fc0ada15f32a67e46a.zip
Bug 572017 - [Releng] Update dependencies and releng platform
- Update releng platform to the latest dependencies - Add XWT dependency to the infra.ui feature - Rewire jboss p2 links to feed the XWT update site to the p2 installer Change-Id: I2458908d66f8080517a35213ecf11e06500e5804 Signed-off-by: Quentin Le Menez <quentin.lemenez@cea.fr>
Diffstat (limited to 'releng/main')
-rw-r--r--releng/main/site/pom.xml37
1 files changed, 37 insertions, 0 deletions
diff --git a/releng/main/site/pom.xml b/releng/main/site/pom.xml
index 5b883999123..68547cde516 100644
--- a/releng/main/site/pom.xml
+++ b/releng/main/site/pom.xml
@@ -14,6 +14,17 @@
<version>5.2.0-SNAPSHOT</version>
<packaging>eclipse-repository</packaging>
+ <properties>
+ <jboss.utils.version>1.7.0</jboss.utils.version>
+ </properties>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>org.jboss.tools.tycho-plugins</id>
+ <url>https://repository.jboss.org/</url>
+ </pluginRepository>
+ </pluginRepositories>
+
<build>
<plugins>
<plugin>
@@ -24,6 +35,32 @@
<includePackedArtifacts>true</includePackedArtifacts>
</configuration>
</plugin>
+
+ <!-- workaround https://bugs.eclipse.org/bugs/show_bug.cgi?id=453708 -->
+ <plugin>
+ <groupId>org.jboss.tools.tycho-plugins</groupId>
+ <artifactId>repository-utils</artifactId>
+ <version>${jboss.utils.version}</version>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>generate-repository-facade</goal>
+ </goals>
+ <configuration>
+ <!-- do not generate the pesky web folder and index.html -->
+ <skipWebContentGeneration>true</skipWebContentGeneration>
+ <!-- p2 update site transitive dependencies repositories -->
+ <associateSites>
+ <!-- Oxygen orbit bundles for batik 1.6.0 -->
+ <site>https://download.eclipse.org/tools/orbit/downloads/drops/R20180206163158/repository/</site>
+ <!-- XWT 1.7.0-S updatesite, remove when train has been rewired -->
+ <site>https://download.eclipse.org/xwt/milestones-1.7.0/1.7.0-S/</site>
+ </associateSites>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</project>

Back to the top