File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 22
33# Axon Framework plugin Changelog
44
5+ ## [ 0.9.3]
6+ - Remove build-until from plugin.xml, as we generally stay compatible with IDEA
7+
58## [ 0.9.2]
69- No longer show the routing key inspection warning when the method is not annotated with a relevant handler annotation.
710- Fix false positive on versions not equal to 4
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ intellijPlatform {
4646 version = properties(" pluginVersion" )
4747 ideaVersion {
4848 sinceBuild = properties(" pluginSinceBuild" )
49- untilBuild = properties( " pluginUntilBuild " )
49+ untilBuild = provider { null }
5050 }
5151
5252
@@ -87,7 +87,7 @@ intellijPlatform {
8787 types = listOf (IntelliJPlatformType .IntellijIdeaCommunity )
8888 channels = listOf (ProductRelease .Channel .RELEASE , ProductRelease .Channel .EAP )
8989 sinceBuild = properties(" pluginSinceBuild" )
90- untilBuild = properties( " pluginUntilBuild " )
90+ untilBuild = provider { null }
9191 }
9292 }
9393
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ javaVersion = 17
2424
2525# Define the plugin version range. This is used to determine the compatibility of the plugin with the IDE.
2626pluginSinceBuild = 242
27- pluginUntilBuild = 243.*
2827platformVersion = 2024.3
2928
3029# Opt-out flag for bundling Kotlin standard library.
You can’t perform that action at this time.
0 commit comments