mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2025-06-04 00:24:06 +00:00
Added opentest4j
test dependency, see: Missing opentest4j dependency in Test Framework (https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-faq.html#missing-opentest4j-dependency-in-test-framework)
This commit is contained in:
parent
492fd44e34
commit
48e88ac4af
@ -7,6 +7,7 @@
|
||||
### Added
|
||||
|
||||
- Example code – `ProjectActivity`
|
||||
- Added `opentest4j` test dependency, see: [Missing opentest4j dependency in Test Framework](https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-faq.html#missing-opentest4j-dependency-in-test-framework)
|
||||
|
||||
### Removed
|
||||
|
||||
|
@ -32,6 +32,7 @@ repositories {
|
||||
// Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/platforms.html#sub:version-catalog
|
||||
dependencies {
|
||||
testImplementation(libs.junit)
|
||||
testImplementation(libs.opentest4j)
|
||||
|
||||
// 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,7 @@
|
||||
[versions]
|
||||
# libraries
|
||||
junit = "4.13.2"
|
||||
opentest4j = "1.3.0"
|
||||
|
||||
# plugins
|
||||
changelog = "2.2.1"
|
||||
@ -11,6 +12,7 @@ qodana = "2024.3.4"
|
||||
|
||||
[libraries]
|
||||
junit = { group = "junit", name = "junit", version.ref = "junit" }
|
||||
opentest4j = { group = "org.opentest4j", name = "opentest4j", version.ref = "opentest4j" }
|
||||
|
||||
[plugins]
|
||||
changelog = { id = "org.jetbrains.changelog", version.ref = "changelog" }
|
||||
|
Loading…
Reference in New Issue
Block a user