mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2026-09-22 11:54:40 +00:00
Inline junit dependency version in build.gradle.kts and remove it from libs.versions.toml.
This commit is contained in:
@@ -10,10 +10,11 @@
|
||||
- Dependencies - upgrade `org.jetbrains.intellij.platform` to `2.14.0`
|
||||
- Update `group` property in `gradle.properties` and remove redundant `pluginGroup` configuration from `build.gradle.kts`
|
||||
- Update `version` property in `gradle.properties` and remove redundant `pluginVersion` configuration from `build.gradle.kts`
|
||||
- Inline `junit` dependency version in `build.gradle.kts` and remove it from `libs.versions.toml`.
|
||||
- Remove `platformVersion` property and inline its value in `build.gradle.kts` for cleaner configuration.
|
||||
|
||||
### Removed
|
||||
|
||||
- Remove `platformVersion` property and inline its value in `build.gradle.kts` for cleaner configuration.
|
||||
- Remove (empty) plugin and module dependency configurations from `build.gradle.kts` and `gradle.properties`.
|
||||
- Remove `opentest4j` dependency from `build.gradle.kts` and `libs.versions.toml`, redundant since IntelliJ Platform 251+
|
||||
- Remove `gradleVersion` property and wrapper configuration as Gradle Wrapper should be updated with `./gradlew wrapper --gradle-version=9.4.1 && ./gradlew wrapper`
|
||||
|
||||
@@ -10,7 +10,7 @@ plugins {
|
||||
|
||||
// Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/version_catalogs.html
|
||||
dependencies {
|
||||
testImplementation(libs.junit)
|
||||
testImplementation("junit:junit:4.13.2")
|
||||
|
||||
// IntelliJ Platform Gradle Plugin Dependencies Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html
|
||||
intellijPlatform {
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
[versions]
|
||||
# libraries
|
||||
junit = "4.13.2"
|
||||
|
||||
# plugins
|
||||
changelog = "2.5.0"
|
||||
|
||||
Reference in New Issue
Block a user