This commit is contained in:
Jakub Chrzanowski 2025-03-28 20:25:28 +01:00
parent 492fd44e34
commit 48e88ac4af
3 changed files with 4 additions and 0 deletions

View File

@ -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

View File

@ -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 {

View File

@ -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" }