IDE version mismatch
Answered
I am trying to get my plugin to work for 2022.3. I added sinceBuild/untilBuild fields:
intellij {
version = '2021.3'
}
patchPluginXml {
changeNotes = """
This is a very early release.<br>
Don't use it."""
sinceBuild = "2021.*"
untilBuild = "2022.*"
}
But I still have the following error:
Plugin 'Common Lisp' (version '0.1.1') is not compatible with the current version of the IDE, because it requires build 2021.* or newer but the current build is IC-223.8836.41
Shouldn't 223 be consider as inside the "2021.* or newer" range?
Please sign in to leave a comment.
Hi Jerome,
Please share the Gradle IntelliJ Plugin version you use and the actual generated plugin.xml file. If the full source code is public, please link it.
I think the versions used in your setup are invalid.
Please try to use
sinceBuild="211"
anduntilBuild="223.*"
.Also, see:
Thank you Karol. Indeed, only build numbers are allowed, using
sinceBuild="211"
anduntilBuild="223.*" works.