Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [epp-dev] EPP 2023-09 RC1

When I install everything, a new error is logged, which I describe here:

https://github.com/merks/simrel-maven/issues/10

It's from an ECF example plugin, so not significant concern.

_________________

Installing JEE, creating a plain old Java project with a class with a main method, setting a breakpoint in that method and running in debug mode to that break creates a bunch of errors in the log:

java.lang.ArrayIndexOutOfBoundsException: Index 0 out of bounds for length 0
    at org.eclipse.jst.j2ee.internal.common.classpath.J2EEComponentClasspathUpdater$FindNodeJob.<init>(J2EEComponentClasspathUpdater.java:254)
    at org.eclipse.jst.j2ee.internal.common.classpath.J2EEComponentClasspathUpdater.createFindNodeJob(J2EEComponentClasspathUpdater.java:535)
    at org.eclipse.jst.j2ee.internal.common.classpath.J2EEComponentClasspathUpdater.resourceChanged(J2EEComponentClasspathUpdater.java:519)
    at org.eclipse.core.internal.events.NotificationManager$1.run(NotificationManager.java:321)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:45)
    at org.eclipse.core.internal.events.NotificationManager.notify(NotificationManager.java:311)
    at org.eclipse.core.internal.events.NotificationManager.broadcastChanges(NotificationManager.java:174)
    at org.eclipse.core.internal.resources.Workspace.broadcastPostChange(Workspace.java:458)
    at org.eclipse.core.internal.resources.Workspace.aboutToBuild(Workspace.java:386)
    at org.eclipse.core.internal.resources.Project$1.run(Project.java:595)
    at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2453)
    at org.eclipse.core.internal.resources.Project.internalBuild(Project.java:642)
    at org.eclipse.core.internal.resources.Project.build(Project.java:154)
    at org.eclipse.debug.core.model.LaunchConfigurationDelegate.lambda$0(LaunchConfigurationDelegate.java:415)
    at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2453)
    at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2473)
    at org.eclipse.debug.core.model.LaunchConfigurationDelegate.buildProjects(LaunchConfigurationDelegate.java:421)
    at org.eclipse.debug.core.model.LaunchConfigurationDelegate.buildForLaunch(LaunchConfigurationDelegate.java:122)
    at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:780)
    at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:716)
    at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:1038)
    at org.eclipse.debug.internal.ui.DebugUIPlugin$1.run(DebugUIPlugin.java:1241)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:63)

I guess the delta is empty and perhaps this should check "!= 1":

public FindNodeJob(IResourceDelta[] d) {

super(FIND_NODE_JOB_NAME);

if (d.length > 1) {

setRule(ResourcesPlugin.getWorkspace().getRoot());

}

else {

setRule(d[0].getResource());

}

setSystem(true);

setDelta(d);

}

Nothing seems broken as a result.

______________________________

RAP comes up with this error in the log:
eclipse.buildId=4.29.0.20230831-1210
java.version=17.0.8.1
java.vendor=Eclipse Adoptium
BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=en_US
Framework arguments:  -product org.eclipse.epp.package.rcp.product
Command-line arguments:  -os win32 -ws win32 -arch x86_64 -product org.eclipse.epp.package.rcp.product

org.eclipse.ui
Error
Fri Sep 01 11:23:46 CEST 2023
Referenced part does not exist yet: org.eclipse.jdt.ui.PackageExplorer.

Given it opens in the plug-in perspective the with package explorer that's not too surprising.  The logged message does not provide sufficient clients for the underlying cause.


On 01.09.2023 05:40, Jonah Graham via epp-dev wrote:
Hi everyone,

Our next milestone build is available for testing: EPP 2023-09 RC1

I didn't update the "last +1" list below for the -1s submitted in M3 because of PDE bug 724. That PDE bug has a milestone of RC2 so I don't expect that this EPP for RC1 will have the issue resolved. Please advise if you would like your packages marked with the warning in the same way as M3:

image.png

I have been following the steps on https://github.com/eclipse-packaging/packages/labels/endgame - you can see the checkmarks as to what is done.

Download link: https://download.eclipse.org/technology/epp/downloads/release/2023-09/RC1/_mirrors.php

EPP was built with the p2 repositories at:

https://download.eclipse.org/releases/2023-09/202309011000/ and
https://download.eclipse.org/technology/epp/packages/2023-09/202308311200/

Please test and send your +1 to this mailing list. +1s are optional as the package will be published anyway.

Last +1 received for each package and platform (apologies if I missed one of your +1 emails, just let me know and I will update Last Recorded +1) 

Packages:
committers - 2023-06 RC2
cpp - 2023-06 RC2
dsl - 2023-06 RC2
embedcpp - 2023-06 RC2
java - 2023-06 RC2
jee - 2023-06 RC2
modeling - 2023-09 M2
parallel - 2022-03 RC2 (tested by Ed in 2023-03 RC2)
php - 2023-06 RC2
rcp - 2023-06 RC2
scout - 2023-06 RC2

Platforms:
Linux x86_64 - 2023-09 M2
Linux aarch64 - 2023-06 RC2
Windows - 2023-06 RC2
macOS x86_64 - 2023-06 RC2
macOS aarch64 - 2023-06 RC2

Thank you for testing!

Regards,
Jonah
~~~
Jonah Graham (he/him)
Kichwa Coders
www.kichwacoders.com

_______________________________________________
epp-dev mailing list
epp-dev@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/epp-dev

Back to the top