@@ -13,7 +13,6 @@ plugins {
13
13
id(" org.jetbrains.kotlin.jvm" ) version " 2.0.0-Beta2"
14
14
// gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
15
15
id(" org.jetbrains.intellij.platform" ) version " 2.2.0"
16
- id(" org.jetbrains.intellij.platform.migration" ) version " 2.2.0"
17
16
// gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
18
17
id(" org.jetbrains.changelog" ) version " 1.3.1"
19
18
// detekt linter - read more: https://detekt.github.io/detekt/gradle.html
@@ -93,16 +92,6 @@ intellijPlatform {
93
92
channels = listOf (if (" true" == System .getenv(" PRE_RELEASE" )) " EAP" else " default" )
94
93
}
95
94
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"))
106
95
}
107
96
108
97
// Configure detekt plugin.
@@ -169,44 +158,6 @@ tasks {
169
158
withType<Detekt > {
170
159
jvmTarget = " 11"
171
160
}
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
- // }
210
161
changelog {
211
162
version.set(properties(" pluginVersion" ))
212
163
header.set(provider { " [${project.version} ] - ${date()} " })
0 commit comments