mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
Use Gradle wrapper
task to handle Gradle updates, Upgrade Gradle Wrapper to 7.1.1
This commit is contained in:
parent
d2c3da412d
commit
cf290a0653
@ -6,11 +6,12 @@
|
|||||||
### Added
|
### Added
|
||||||
- GitHub Actions: UI Tests workflow
|
- GitHub Actions: UI Tests workflow
|
||||||
- Suppress `UnusedProperty` inspection for the `kotlin.stdlib.default.dependency` in `gradle.properties`
|
- Suppress `UnusedProperty` inspection for the `kotlin.stdlib.default.dependency` in `gradle.properties`
|
||||||
|
- Use Gradle `wrapper` task to handle Gradle updates
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Update `pluginVerifierIdeVersions` to `2020.3.4, 2021.1.3`
|
- Update `pluginVerifierIdeVersions` to `2020.3.4, 2021.1.3`
|
||||||
- Change since/until build to `203-212.*`
|
- Change since/until build to `203-212.*`
|
||||||
- Upgrade Gradle Wrapper to `7.1`
|
- Upgrade Gradle Wrapper to `7.1.1`
|
||||||
- Dependencies - upgrade `org.jetbrains.kotlin.jvm` to `1.5.20`
|
- Dependencies - upgrade `org.jetbrains.kotlin.jvm` to `1.5.20`
|
||||||
- Dependencies (GitHub Actions) - upgrade `actions/upload-artifact` to `v2.2.4`
|
- Dependencies (GitHub Actions) - upgrade `actions/upload-artifact` to `v2.2.4`
|
||||||
- Dependencies - upgrade `org.jetbrains.intellij` to `1.1.2`
|
- Dependencies - upgrade `org.jetbrains.intellij` to `1.1.2`
|
||||||
|
@ -79,6 +79,10 @@ tasks {
|
|||||||
jvmTarget = "1.8"
|
jvmTarget = "1.8"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
wrapper {
|
||||||
|
gradleVersion = properties("gradleVersion")
|
||||||
|
}
|
||||||
|
|
||||||
patchPluginXml {
|
patchPluginXml {
|
||||||
version.set(properties("pluginVersion"))
|
version.set(properties("pluginVersion"))
|
||||||
sinceBuild.set(properties("pluginSinceBuild"))
|
sinceBuild.set(properties("pluginSinceBuild"))
|
||||||
|
@ -22,6 +22,8 @@ platformDownloadSources = true
|
|||||||
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
|
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
|
||||||
platformPlugins =
|
platformPlugins =
|
||||||
|
|
||||||
|
gradleVersion = 7.1.1
|
||||||
|
|
||||||
# Opt-out flag for bundling Kotlin standard library.
|
# Opt-out flag for bundling Kotlin standard library.
|
||||||
# See https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library for details.
|
# See https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library for details.
|
||||||
# suppress inspection "UnusedProperty"
|
# suppress inspection "UnusedProperty"
|
||||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
Loading…
Reference in New Issue
Block a user