diff --git a/.github/template-cleanup/gradle.properties b/.github/template-cleanup/gradle.properties index f964970..1ed28d0 100644 --- a/.github/template-cleanup/gradle.properties +++ b/.github/template-cleanup/gradle.properties @@ -13,7 +13,6 @@ pluginUntilBuild = 213.* platformType = IC platformVersion = 2020.3.4 -platformDownloadSources = true # Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html # Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22 diff --git a/CHANGELOG.md b/CHANGELOG.md index 2149006..47d5be7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ ### Removed - Removed the `pluginVerifierIdeVersions` configuration to use default IDEs list provided by the `listProductsReleases` task for `runPluginVerifier` +- Removed `platformDownloadSources` from Gradle configuration to use default value ## [1.0.0] ### Added diff --git a/build.gradle.kts b/build.gradle.kts index 54297ee..4159b91 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -29,7 +29,6 @@ intellij { pluginName.set(properties("pluginName")) version.set(properties("platformVersion")) type.set(properties("platformType")) - downloadSources.set(properties("platformDownloadSources").toBoolean()) updateSinceUntilBuild.set(true) // Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file. diff --git a/gradle.properties b/gradle.properties index bfc8191..dc7953c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,7 +13,6 @@ pluginUntilBuild = 213.* platformType = IC platformVersion = 2020.3.4 -platformDownloadSources = true # Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html # Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22