Skip to content

Commit e832172

Browse files
Remove build-until from plugin.xml
We generally stay compatible with IDEA, so there's no reason to break the plugin for everyone three times a years. Let's remove the end-build. Jetbrains will periodically check compatibility and email us if it no longer is.
1 parent 948f611 commit e832172

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
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

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

gradle.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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.
2626
pluginSinceBuild = 242
27-
pluginUntilBuild = 243.*
2827
platformVersion = 2024.3
2928

3029
# Opt-out flag for bundling Kotlin standard library.

0 commit comments

Comments
 (0)