File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed
src/main/resources/META-INF Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# Axon Framework plugin Changelog
4
4
5
+ ## [ 0.9.0]
6
+ - Plugin is now compatible with IDEA 2024.3 (IDEA 243.* ) with minimum version of 2024.3
7
+ - Make plugin compatible with the K2 mode of IntelliJ IDEA
8
+
5
9
## [ 0.8.9]
6
10
- Fix false highlights about non existing properties when they are defined in a superclass #307 Thanks to @guymahieu
7
11
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ plugins {
27
27
// Java support
28
28
id(" java" )
29
29
// Kotlin support
30
- id(" org.jetbrains.kotlin.jvm" ) version " 1.9.22 "
30
+ id(" org.jetbrains.kotlin.jvm" ) version " 2.1.0 "
31
31
// Gradle IntelliJ Plugin
32
32
id(" org.jetbrains.intellij.platform" ) version " 2.1.0"
33
33
// Gradle Changelog Plugin
Original file line number Diff line number Diff line change 18
18
# Basic plugin information
19
19
pluginGroup =io.axoniq.ide.intellij
20
20
pluginName =Axon Framework
21
- pluginVersion =0.8.9
21
+ pluginVersion =0.9.0
22
22
axonVersion =4.10.1
23
23
javaVersion = 17
24
24
25
25
# Define the plugin version range. This is used to determine the compatibility of the plugin with the IDE.
26
26
pluginSinceBuild = 242
27
27
pluginUntilBuild = 243.*
28
- platformVersion = 2024.2
28
+ platformVersion = 2024.3
29
29
30
30
# Opt-out flag for bundling Kotlin standard library.
31
31
# See https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library for details.
Original file line number Diff line number Diff line change 123
123
<errorHandler implementation =" org.axonframework.intellij.ide.plugin.support.AxonErrorReportSubmitter" />
124
124
</extensions >
125
125
126
+ <extensions defaultExtensionNs =" org.jetbrains.kotlin" >
127
+ <supportsKotlinPluginMode supportsK2 =" true" />
128
+ </extensions >
129
+
126
130
<actions >
127
131
<action id =" AxonReferenceGuideAction" text =" Axon Reference Guide"
128
132
class =" org.axonframework.intellij.ide.plugin.actions.AxonReferenceGuideAction" >
You can’t perform that action at this time.
0 commit comments