mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2025-06-05 17:14:08 +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
|
### Added
|
||||||
|
|
||||||
- Example code – `ProjectActivity`
|
- 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
|
### 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 are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/platforms.html#sub:version-catalog
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation(libs.junit)
|
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
|
// IntelliJ Platform Gradle Plugin Dependencies Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html
|
||||||
intellijPlatform {
|
intellijPlatform {
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
[versions]
|
[versions]
|
||||||
# libraries
|
# libraries
|
||||||
junit = "4.13.2"
|
junit = "4.13.2"
|
||||||
|
opentest4j = "1.3.0"
|
||||||
|
|
||||||
# plugins
|
# plugins
|
||||||
changelog = "2.2.1"
|
changelog = "2.2.1"
|
||||||
@ -11,6 +12,7 @@ qodana = "2024.3.4"
|
|||||||
|
|
||||||
[libraries]
|
[libraries]
|
||||||
junit = { group = "junit", name = "junit", version.ref = "junit" }
|
junit = { group = "junit", name = "junit", version.ref = "junit" }
|
||||||
|
opentest4j = { group = "org.opentest4j", name = "opentest4j", version.ref = "opentest4j" }
|
||||||
|
|
||||||
[plugins]
|
[plugins]
|
||||||
changelog = { id = "org.jetbrains.changelog", version.ref = "changelog" }
|
changelog = { id = "org.jetbrains.changelog", version.ref = "changelog" }
|
||||||
|
Loading…
Reference in New Issue
Block a user