Skip to content

Commit dd86129

Browse files
committed
Update baseline of IntelliJ to 2024.1 and add release notes
1 parent 36453c3 commit dd86129

File tree

5 files changed

+20
-7
lines changed

5 files changed

+20
-7
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ jobs:
88
fail-fast: false
99
matrix:
1010
version:
11-
- { jdk: 17, idea: 2023.3 }
1211
- { jdk: 17, idea: 2024.1 }
13-
- { jdk: 17, idea: 2024.2 }
14-
- { jdk: 17, idea: LATEST-EAP-SNAPSHOT }
12+
- { jdk: 21, idea: 2024.2 }
13+
- { jdk: 21, idea: 2024.3 }
14+
- { jdk: 21, idea: 2025.1 }
15+
- { jdk: 21, idea: LATEST-EAP-SNAPSHOT }
1516
name: 'IDEA ${{ matrix.version.idea }}'
1617
env:
1718
IDEA_VERSION: ${{ matrix.version.idea }}

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import com.hierynomus.gradle.license.tasks.LicenseFormat
33
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
44

55
plugins {
6-
id "org.jetbrains.intellij.platform" version "2.0.1"
6+
id "org.jetbrains.intellij.platform" version "2.5.0"
77
id "com.github.hierynomus.license" version "0.16.1"
88
id "de.undercouch.download" version "5.6.0"
99
}
@@ -37,7 +37,7 @@ intellijPlatform {
3737
projectName = 'MapStruct-Intellij-Plugin'
3838
pluginConfiguration {
3939
ideaVersion {
40-
sinceBuild = "233"
40+
sinceBuild = "241"
4141
untilBuild = provider { null } as Provider<? extends String>
4242
}
4343
}

change-notes.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
<html lang="en">
2+
<h2>1.9.0</h2>
3+
<ul>
4+
<li>
5+
New Inspections:
6+
<ul>
7+
<li>Unknown reference inspection for <code>source</code> and <code>target</code> in <code>@Mapping</code> and <code>@ValueMapping</code> annotation.</li>
8+
<li>Unknown reference inspection for <code>qualifiedByName</code> in <code>@Mapping</code> annotation.</li>
9+
</ul>
10+
</li>
11+
<li>Support for Freemarker and Immutables</li>
12+
13+
</ul>
214
<h2>1.8.0</h2>
315
<ul>
416
<li>

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://www.jetbrains.com/intellij-repository/releases
33
# https://www.jetbrains.com/intellij-repository/snapshots
44

5-
ideaVersion = 2023.3
5+
ideaVersion = 2024.1
66
ideaType = IC
77
sources = true
88
runGenerators = true

src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<vendor url="https://www.mapstruct.org">MapStruct</vendor>
2525

2626
<!-- please see https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
27-
<idea-version since-build="233"/>
27+
<idea-version since-build="241"/>
2828

2929
<!-- please see https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
3030
on how to target different products -->

0 commit comments

Comments
 (0)