Skip to content

Commit

Permalink
Fix plugin compatibility (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybaloney authored Dec 7, 2021
1 parent 3afdfe2 commit 9a6c294
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group 'org.tonybaloney.security'
version '1.25.0'
version '1.25.1'

def ktor_version = "1.6.6"
def kotlin_version = "1.6.0"
Expand Down Expand Up @@ -37,15 +37,11 @@ test {
dependsOn 'cleanTest'
}

// See https://github.com/JetBrains/gradle-intellij-plugin/
// Make the intellij version overridable on the command line to support multiple build versions..
def intellijversion = project.hasProperty('intellijVersion') ? project.getProperty('intellijVersion') : '2021.3'

intellij {
type = 'PC'
plugins = ['python-ce', 'yaml']
updateSinceUntilBuild = false
version = intellijversion
version = '2021.3'
}

patchPluginXml {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<li>Scan code in your CI/CD using Docker</li>
</ul>
]]></description>
<idea-version since-build="213" until-build="221.*" />
<idea-version since-build="213.0" until-build="220.*" />

<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
on how to target different products -->
Expand Down

0 comments on commit 9a6c294

Please sign in to comment.