Skip to content

Commit 59a4b72

Browse files
authored
Support eclipse 2024-12 (#232)
1 parent b984b06 commit 59a4b72

File tree

7 files changed

+45
-57
lines changed

7 files changed

+45
-57
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
# verify build on one node before multiple builds on different os are started
1717
fail-fast-build:
18-
name: verify (ubuntu-latest, 2024-09)
18+
name: verify (ubuntu-latest, 2024-12)
1919
timeout-minutes: 60
2020
runs-on: ubuntu-latest
2121
steps:
@@ -28,7 +28,7 @@ jobs:
2828
- name: Build
2929
uses: ./.github/actions/build
3030
with:
31-
targetPlatform: 2024-09
31+
targetPlatform: 2024-12
3232
deploy: true
3333
pmdCiSecretPassphrase: ${{ secrets.PMD_CI_SECRET_PASSPHRASE }}
3434
githubToken: ${{ secrets.GITHUB_TOKEN }}
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/upload-artifact@v4
3838
if: ${{ failure() }}
3939
with:
40-
name: screenshots-ubuntu-latest-2024-09
40+
name: screenshots-ubuntu-latest-2024-12
4141
path: net.sourceforge.pmd.eclipse.plugin.test/screenshots
4242
if-no-files-found: ignore
4343

@@ -51,19 +51,19 @@ jobs:
5151
strategy:
5252
matrix:
5353
os: [ ubuntu-latest, windows-latest, macos-latest ]
54-
targetPlatform: [ 2024-09 ]
54+
targetPlatform: [ 2024-12 ]
5555
exclude:
5656
# exclude the fail-fast-build, which already ran
5757
- os: ubuntu-latest
58-
targetPlatform: 2024-09
58+
targetPlatform: 2024-12
5959
# run other target platforms only on linux
6060
include:
61+
- os: ubuntu-latest
62+
targetPlatform: 2024-09
6163
- os: ubuntu-latest
6264
targetPlatform: 2024-06
6365
- os: ubuntu-latest
6466
targetPlatform: 2024-03
65-
- os: ubuntu-latest
66-
targetPlatform: 2023-12
6767
fail-fast: true
6868

6969
runs-on: ${{ matrix.os }}

ReleaseNotes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ Eclipse Update Site:
1212
This is a minor release.
1313

1414
### New and noteworthy
15+
* Support for Eclipse 2024-12 added
16+
* Support for Eclipse 2023-12 removed
1517

1618
### Fixed Issues
1719

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</modules>
1616

1717
<properties>
18-
<target.platform>2024-09</target.platform>
18+
<target.platform>2024-12</target.platform>
1919

2020
<java.version>1.8</java.version>
2121
<!-- https://github.com/eclipse/tycho/blob/master/RELEASE_NOTES.md and https://github.com/eclipse-tycho/tycho/releases -->

target-platforms/2023-12.target

Lines changed: 0 additions & 28 deletions
This file was deleted.

target-platforms/2023-12.tpd

Lines changed: 0 additions & 21 deletions
This file was deleted.

target-platforms/2024-12.target

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<?pde?>
3+
<!-- generated with https://github.com/eclipse-cbi/targetplatform-dsl -->
4+
<target name="2024-12 (4.34)" sequenceNumber="1733594957">
5+
<locations>
6+
<location includeMode="planner" includeAllPlatforms="false" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
7+
<unit id="org.eclipse.platform.feature.group" version="4.34.0.v20241120-1800"/>
8+
<unit id="org.eclipse.jdt.feature.group" version="3.20.0.v20241120-1800"/>
9+
<unit id="org.eclipse.wst.xml_core.feature.feature.group" version="3.36.0.v202409282004"/>
10+
<unit id="org.eclipse.pde.feature.group" version="3.16.100.v20241120-1800"/>
11+
<unit id="org.eclipse.swtbot.eclipse.feature.group" version="4.2.1.202406141605"/>
12+
<unit id="org.eclipse.swtbot.feature.group" version="4.2.1.202406141605"/>
13+
<unit id="org.eclipse.swtbot.ide.feature.group" version="4.2.1.202406141605"/>
14+
<unit id="org.eclipse.swtbot.generator.feature.feature.group" version="4.2.1.202406141605"/>
15+
<unit id="org.junit" version="4.13.2.v20240929-1000"/>
16+
<unit id="org.junit.source" version="4.13.2.v20240929-1000"/>
17+
<repository location="https://download.eclipse.org/releases/2024-12/"/>
18+
</location>
19+
</locations>
20+
<targetJRE path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21"/>
21+
</target>

target-platforms/2024-12.tpd

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
target "2024-12 (4.34)"
2+
with source requirements environment JavaSE-21
3+
location "https://download.eclipse.org/releases/2024-12/" {
4+
org.eclipse.platform.feature.group
5+
org.eclipse.jdt.feature.group
6+
org.eclipse.wst.xml_core.feature.feature.group
7+
org.eclipse.pde.feature.group
8+
org.eclipse.swtbot.eclipse.feature.group
9+
org.eclipse.swtbot.feature.group
10+
org.eclipse.swtbot.ide.feature.group
11+
org.eclipse.swtbot.generator.feature.feature.group
12+
org.junit
13+
org.junit.source
14+
}

0 commit comments

Comments
 (0)