diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b7eec478..aecf31f2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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-12) + name: verify (ubuntu-latest, 2025-03) timeout-minutes: 60 runs-on: ubuntu-latest steps: @@ -28,7 +28,7 @@ jobs: - name: Build uses: ./.github/actions/build with: - targetPlatform: 2024-12 + targetPlatform: 2025-03 deploy: true pmdCiSecretPassphrase: ${{ secrets.PMD_CI_SECRET_PASSPHRASE }} githubToken: ${{ secrets.GITHUB_TOKEN }} @@ -39,7 +39,7 @@ jobs: uses: actions/upload-artifact@v4 if: ${{ failure() }} with: - name: screenshots-ubuntu-latest-2024-12 + name: screenshots-ubuntu-latest-2025-03 path: net.sourceforge.pmd.eclipse.plugin.test/screenshots if-no-files-found: ignore @@ -53,19 +53,19 @@ jobs: strategy: matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] - targetPlatform: [ 2024-12 ] + targetPlatform: [ 2025-03 ] exclude: # exclude the fail-fast-build, which already ran - os: ubuntu-latest - targetPlatform: 2024-12 + targetPlatform: 2025-03 # run other target platforms only on linux include: + - os: ubuntu-latest + targetPlatform: 2024-12 - os: ubuntu-latest targetPlatform: 2024-09 - os: ubuntu-latest targetPlatform: 2024-06 - - os: ubuntu-latest - targetPlatform: 2024-03 fail-fast: true runs-on: ${{ matrix.os }} diff --git a/ReleaseNotes.md b/ReleaseNotes.md index c9b6e005..afda9f1c 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -12,12 +12,15 @@ Eclipse Update Site: This is a minor release. ### New and noteworthy +* Support for Eclipse 2025-03 added +* Support for Eclipse 2024-03 removed ### Fixed Issues ### API Changes -### External Contributions +### Merged pull requests +* Support eclipse 2025-03 ([#260](https://github.com/pmd/pmd-eclipse-plugin/pull/260)) by [@adangel](https://github.com/adangel) ## 28-February-2025: 7.11.0.v20250228-1209-r diff --git a/pom.xml b/pom.xml index 509fa762..ac0a1eb7 100644 --- a/pom.xml +++ b/pom.xml @@ -15,7 +15,7 @@ - 2024-12 + 2025-03 1.8 diff --git a/target-platforms/2024-03.target b/target-platforms/2024-03.target deleted file mode 100644 index 30839e78..00000000 --- a/target-platforms/2024-03.target +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target-platforms/2024-03.tpd b/target-platforms/2024-03.tpd deleted file mode 100644 index 4c48fa35..00000000 --- a/target-platforms/2024-03.tpd +++ /dev/null @@ -1,21 +0,0 @@ -target "2024-03 (4.31)" -with source requirements environment JavaSE-17 -location "https://download.eclipse.org/releases/2024-03/" { - 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 -} - -location "https://download.eclipse.org/tools/orbit/simrel/orbit-aggregation/2024-03/" { - org.apache.commons.commons-io - org.apache.commons.commons-io.source - org.apache.commons.lang - org.apache.commons.lang.source - org.junit - org.junit.source -} diff --git a/target-platforms/2025-03.target b/target-platforms/2025-03.target new file mode 100644 index 00000000..4e2b5937 --- /dev/null +++ b/target-platforms/2025-03.target @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/target-platforms/2025-03.tpd b/target-platforms/2025-03.tpd new file mode 100644 index 00000000..721a7c41 --- /dev/null +++ b/target-platforms/2025-03.tpd @@ -0,0 +1,14 @@ +target "2025-03 (4.35)" +with source requirements environment JavaSE-21 +location "https://download.eclipse.org/releases/2025-03/" { + 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 +}