Skip to content

Commit 1b0daeb

Browse files
committed
Intellij Platform Plugin migration - fix the verification check
1 parent f636c18 commit 1b0daeb

File tree

3 files changed

+2
-51
lines changed

3 files changed

+2
-51
lines changed

build.gradle.kts

-49
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ plugins {
1313
id("org.jetbrains.kotlin.jvm") version "2.0.0-Beta2"
1414
// gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
1515
id("org.jetbrains.intellij.platform") version "2.2.0"
16-
id("org.jetbrains.intellij.platform.migration") version "2.2.0"
1716
// gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
1817
id("org.jetbrains.changelog") version "1.3.1"
1918
// detekt linter - read more: https://detekt.github.io/detekt/gradle.html
@@ -93,16 +92,6 @@ intellijPlatform {
9392
channels = listOf(if ("true" == System.getenv("PRE_RELEASE")) "EAP" else "default")
9493
}
9594

96-
// pluginName.set(properties("pluginName"))
97-
// version.set(properties("platformVersion"))
98-
// type.set(properties("platformType"))
99-
// downloadSources.set(properties("platformDownloadSources").toBoolean())
100-
// updateSinceUntilBuild.set(false) // don't write information of current IntelliJ build into plugin.xml, instead use information from patchPluginXml
101-
102-
// Plugin Dependencies:
103-
// https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_dependencies.html
104-
//
105-
// plugins.set(listOf("com.intellij.java", "org.intellij.intelliLang"))
10695
}
10796

10897
// Configure detekt plugin.
@@ -169,44 +158,6 @@ tasks {
169158
withType<Detekt> {
170159
jvmTarget = "11"
171160
}
172-
// patchPluginXml {
173-
// version.set(properties("pluginVersion"))
174-
// sinceBuild.set((properties("pluginSinceBuild")))
175-
// // untilBuild(pluginUntilBuild) --> don't set "untilBuild" to allow new versions to use existing plugin without changes until breaking API changes are known
176-
//
177-
// // Extract the <!-- Plugin description --> section from README.md and provide for the plugin's manifest
178-
// pluginDescription.set(
179-
// provider {
180-
// File(projectDir, "README.md").readText().lines().run {
181-
// val start = "<!-- Plugin description -->"
182-
// val end = "<!-- Plugin description end -->"
183-
//
184-
// if (!containsAll(listOf(start, end))) {
185-
// throw GradleException("Plugin description section not found in README.md:\n$start ... $end")
186-
// }
187-
// subList(indexOf(start) + 1, indexOf(end))
188-
// }.joinToString("\n").run { markdownToHTML(this) }
189-
// }
190-
// )
191-
//
192-
// // Get the latest available change notes from the changelog file
193-
// changeNotes.set(
194-
// provider {
195-
// changelog.getLatest().toHTML()
196-
// }
197-
// )
198-
// }
199-
200-
// runPluginVerifier {
201-
// ideVersions.set(properties("pluginVerifierIdeVersions").split(',').map(String::trim).filter(String::isNotEmpty))
202-
// }
203-
//
204-
// publishPlugin {
205-
// dependsOn("patchChangelog")
206-
// token.set(System.getenv("PUBLISH_TOKEN"))
207-
// // if release is marked as a pre-release in the GitHub release, push it to EAP
208-
// channels.set(listOf(if ("true" == System.getenv("PRE_RELEASE")) "EAP" else "default"))
209-
// }
210161
changelog {
211162
version.set(properties("pluginVersion"))
212163
header.set(provider { "[${project.version}] - ${date()}" })

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ markdownParserVersion = 0.1.23
66

77
pluginGroup = org.jetbrains.plugins.template
88
pluginName = zenuml
9-
pluginVersion = 2024.12.25
9+
pluginVersion = 2025.1.1
1010
pluginSinceBuild = 233
1111

1212
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl

resource/META-INF/plugin.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,5 +167,5 @@
167167

168168
</actions>
169169

170-
<product-descriptor code="PZENUML" release-date="20190601" release-version="20191" optional="true" />
170+
<product-descriptor code="PZENUML" release-date="20250101" release-version="20251" optional="true" />
171171
</idea-plugin>

0 commit comments

Comments
 (0)