Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: verify
on: [push, pull_request]
jobs:
pmd:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/setup-java@v5
Expand All @@ -20,7 +20,7 @@ jobs:
if: steps.pmd.outputs.violations != 0
run: exit 1
maven-verify:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Set up Maven
uses: stCarolas/setup-maven@v5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
/**
* Utility class for selection methods in an eclipse widget for SWTBot testing.
*/
@SuppressWarnings("nls")
public final class SwtBotWizardUtil {

private SwtBotWizardUtil() {
Expand All @@ -41,7 +42,7 @@ private SwtBotWizardUtil() {
* the folder name
*/
public static void selectProjectFolder(final SwtWorkbenchBot bot, final String folderName) {
SWTBotView packageExplorer = bot.viewByTitle("Project Explorer");
SWTBotView packageExplorer = bot.viewByTitle("Package Explorer");
packageExplorer.show();
Composite comp = (Composite) packageExplorer.getWidget();
final Tree tree = bot.widget(WidgetMatcherFactory.widgetOfType(Tree.class), comp);
Expand Down
1 change: 1 addition & 0 deletions ddk-target/ddk.target
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<unit id="org.eclipse.jdt.source.feature.group" version="0.0.0"/>
<unit id="org.eclipse.platform.feature.group" version="0.0.0"/>
<unit id="org.eclipse.platform.source.feature.group" version="0.0.0"/>
<unit id="org.eclipse.sdk.feature.group" version="0.0.0"/>
<repository location="https://download.eclipse.org/eclipse/updates/4.34/"/>
</location>
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
Expand Down
Loading