Skip to content

Commit

Permalink
Support eclipse 2024-09 (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
adangel authored Sep 20, 2024
1 parent e093f22 commit 04aab2e
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 58 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
using: 'composite'
steps:
- name: Set up JDK 21
id: java17
id: java21
uses: actions/setup-java@v4
with:
distribution: temurin
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
# verify build on one node before multiple builds on different os are started
fail-fast-build:
name: verify (ubuntu-latest, 2024-06)
name: verify (ubuntu-latest, 2024-09)
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Build
uses: ./.github/actions/build
with:
targetPlatform: 2024-06
targetPlatform: 2024-09
deploy: true
pmdCiSecretPassphrase: ${{ secrets.PMD_CI_SECRET_PASSPHRASE }}
githubToken: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -37,7 +37,7 @@ jobs:
uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: screenshots-ubuntu-latest-2024-06
name: screenshots-ubuntu-latest-2024-09
path: net.sourceforge.pmd.eclipse.plugin.test/screenshots
if-no-files-found: ignore

Expand All @@ -51,19 +51,19 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
targetPlatform: [ 2024-06 ]
targetPlatform: [ 2024-09 ]
exclude:
# exclude the fail-fast-build, which already ran
- os: ubuntu-latest
targetPlatform: 2024-06
targetPlatform: 2024-09
# run other target platforms only on linux
include:
- os: ubuntu-latest
targetPlatform: 2024-06
- os: ubuntu-latest
targetPlatform: 2024-03
- os: ubuntu-latest
targetPlatform: 2023-12
- os: ubuntu-latest
targetPlatform: 2023-09
fail-fast: true

runs-on: ${{ matrix.os }}
Expand Down
3 changes: 3 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ This is a minor release.

### New and noteworthy

* Support for Eclipse 2024-09 added
* Support for Eclipse 2023-09 removed

#### New Git default branch - "main"

We are joining the Git community and updating "master" to "main". Using the term "master" for the main
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</modules>

<properties>
<target.platform>2024-06</target.platform>
<target.platform>2024-09</target.platform>

<java.version>1.8</java.version>
<!-- https://github.com/eclipse/tycho/blob/master/RELEASE_NOTES.md and https://github.com/eclipse-tycho/tycho/releases -->
Expand Down
28 changes: 0 additions & 28 deletions target-platforms/2023-09.target

This file was deleted.

21 changes: 0 additions & 21 deletions target-platforms/2023-09.tpd

This file was deleted.

21 changes: 21 additions & 0 deletions target-platforms/2024-09.target
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde?>
<!-- generated with https://github.com/eclipse-cbi/targetplatform-dsl -->
<target name="2024-09 (4.33)" sequenceNumber="1726821193">
<locations>
<location includeMode="planner" includeAllPlatforms="false" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
<unit id="org.eclipse.platform.feature.group" version="4.33.0.v20240903-0618"/>
<unit id="org.eclipse.jdt.feature.group" version="3.19.600.v20240903-0240"/>
<unit id="org.eclipse.wst.xml_core.feature.feature.group" version="3.34.0.v202405130132"/>
<unit id="org.eclipse.pde.feature.group" version="3.16.0.v20240903-0240"/>
<unit id="org.eclipse.swtbot.eclipse.feature.group" version="4.2.1.202406141605"/>
<unit id="org.eclipse.swtbot.feature.group" version="4.2.1.202406141605"/>
<unit id="org.eclipse.swtbot.ide.feature.group" version="4.2.1.202406141605"/>
<unit id="org.eclipse.swtbot.generator.feature.feature.group" version="4.2.1.202406141605"/>
<unit id="org.junit" version="4.13.2.v20230809-1000"/>
<unit id="org.junit.source" version="4.13.2.v20230809-1000"/>
<repository location="https://download.eclipse.org/releases/2024-09/"/>
</location>
</locations>
<targetJRE path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21"/>
</target>
14 changes: 14 additions & 0 deletions target-platforms/2024-09.tpd
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
target "2024-09 (4.33)"
with source requirements environment JavaSE-21
location "https://download.eclipse.org/releases/2024-09/" {
org.eclipse.platform.feature.group
org.eclipse.jdt.feature.group
org.eclipse.wst.xml_core.feature.feature.group
org.eclipse.pde.feature.group
org.eclipse.swtbot.eclipse.feature.group
org.eclipse.swtbot.feature.group
org.eclipse.swtbot.ide.feature.group
org.eclipse.swtbot.generator.feature.feature.group
org.junit
org.junit.source
}

0 comments on commit 04aab2e

Please sign in to comment.