Skip to content

Commit 4850a3b

Browse files
committed
Merge remote-tracking branch 'ibex/main'
2 parents 3750a1d + 2078677 commit 4850a3b

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

build.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,15 @@ patch_pde_jar () {
209209
cp ./patches/$PDE_JAR_FILE $ECLIPSE_BASE_PATH/plugins/$PDE_JAR_FILE
210210
}
211211

212+
# Remove all currently known notification URLs.
213+
# https://github.com/eclipse-packaging/packages/issues/310#issuecomment-2919590417
214+
remove_notification_urls () {
215+
log "Removing Eclipse notification URLs."
216+
mkdir -p $ECLIPSE_BASE_PATH/configuration/org.eclipse.oomph.setup/
217+
URL_FILE="notificationURIs.txt"
218+
cp ./resources/$URL_FILE $ECLIPSE_BASE_PATH/configuration/org.eclipse.oomph.setup/$URL_FILE
219+
}
220+
212221
#
213222
# Script
214223
#
@@ -309,6 +318,9 @@ fi
309318
# Deploy PDE JAR file path
310319
patch_pde_jar
311320

321+
# Remove notification URLs
322+
remove_notification_urls
323+
312324
log "Clean-up old archives and create new archive."
313325
rm -f ./$OUTPUT_FILE
314326
zip -q -r $OUTPUT_FILE eclipse

resources/notificationURIs.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
https://www.eclipse.org/setups/notification/devstyle/
2+
https://www.eclipse.org/setups/notification/milestone
3+
https://www.eclipse.org/setups/notification/java24/index.html

0 commit comments

Comments
 (0)