Skip to content

Commit

Permalink
[UIMA-6443] Fresh Eclipse update site for every release
Browse files Browse the repository at this point in the history
- Upgrade to Tycho 2.7.3-SNAPSHOT to get a fix for eclipse-tycho/tycho#932
- Disable installing and deploying and even building the update site ZIP for the traditional update site. It is enough to have it as a folder atm.
  • Loading branch information
reckart committed May 6, 2022
1 parent a2f2132 commit 9c89bb5
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
18 changes: 18 additions & 0 deletions uimaj-eclipse-update-site/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@
<name>Apache UIMA Eclipse: ${project.artifactId}</name>
<description>The UIMA Java SDK Eclipse update site</description>
<url>${uimaWebsiteUrl}</url>

<properties>
<maven.install.skip>true</maven.install.skip>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>

<dependencies>
<dependency>
Expand All @@ -48,4 +53,17 @@
<version>3.3.0-SNAPSHOT</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<skipArchive>true</skipArchive>
</configuration>
</plugin>
</plugins>
</build>
</project>
10 changes: 9 additions & 1 deletion uimaj-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,19 @@
<name>artifactory.openntf.org</name>
<url>https://artifactory.openntf.org/openntf</url>
</pluginRepository>

<pluginRepository>
<id>tycho-snapshots</id>
<url>https://repo.eclipse.org/content/repositories/tycho-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
</pluginRepository>
</pluginRepositories>

<properties>
<!-- versions >= 2.7.1 seem to have a bug that they embed bundle JARs -->
<tycho-version>2.7.0</tycho-version>
<tycho-version>2.7.3-SNAPSHOT</tycho-version>

<!--
Configuring settings is best done through default properties that multiple plugins.
Expand Down

0 comments on commit 9c89bb5

Please sign in to comment.