File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -209,6 +209,15 @@ patch_pde_jar () {
209
209
cp ./patches/$PDE_JAR_FILE $ECLIPSE_BASE_PATH /plugins/$PDE_JAR_FILE
210
210
}
211
211
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
+
212
221
#
213
222
# Script
214
223
#
309
318
# Deploy PDE JAR file path
310
319
patch_pde_jar
311
320
321
+ # Remove notification URLs
322
+ remove_notification_urls
323
+
312
324
log " Clean-up old archives and create new archive."
313
325
rm -f ./$OUTPUT_FILE
314
326
zip -q -r $OUTPUT_FILE eclipse
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments