Skip to content

Commit

Permalink
#33495: Disabling until-build setting for now to support future versions
Browse files Browse the repository at this point in the history
  • Loading branch information
janssen-tiobe committed Jan 22, 2024
1 parent 11e7f06 commit 737b1ed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 2 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ intellij {
version.set("2022.2.4")
type.set("IC") // Target IDE Platform

plugins.set(listOf(/* Plugin Dependencies */))
updateSinceUntilBuild.set(false)
}

tasks {
Expand All @@ -31,9 +31,7 @@ tasks {
kotlinOptions.jvmTarget = "17"
}

patchPluginXml {
sinceBuild.set("222")
}
patchPluginXml { }

signPlugin {
certificateChain.set(System.getenv("CERTIFICATE_CHAIN"))
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
<idea-plugin>
<!-- This plugin supports 2022.2 or later. -->
<idea-version since-build="222"/>

<!-- Unique identifier of the plugin. It should be FQN. It cannot be changed between the plugin versions. -->
<id>com.tiobe.plugins.intellij</id>

Expand Down

0 comments on commit 737b1ed

Please sign in to comment.