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?

 

0
3 comments

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.

0

Thank you Karol. Indeed, only build numbers are allowed, using sinceBuild="211" and untilBuild="223.*" works.

0

Please sign in to leave a comment.