aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/build.gradle.kts18
-rw-r--r--core/content-matcher-test-utils/build.gradle.kts6
-rw-r--r--core/test-api/build.gradle.kts5
3 files changed, 12 insertions, 17 deletions
diff --git a/core/build.gradle.kts b/core/build.gradle.kts
index a59bb0a5..a51e3a62 100644
--- a/core/build.gradle.kts
+++ b/core/build.gradle.kts
@@ -7,26 +7,22 @@ plugins {
}
dependencies {
- api("org.jetbrains:markdown:0.3.1")
+ api(libs.jetbrainsMarkdown)
implementation(kotlin("reflect"))
- val jsoup_version: String by project
- implementation("org.jsoup:jsoup:$jsoup_version")
+ implementation(libs.jsoup)
- val jackson_version: String by project
- implementation("com.fasterxml.jackson.module:jackson-module-kotlin:$jackson_version")
- implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:$jackson_version")
- val jackson_databind_version: String by project
+ implementation(libs.jackson.kotlin)
+ implementation(libs.jackson.xml)
constraints {
- implementation("com.fasterxml.jackson.core:jackson-databind:$jackson_databind_version") {
+ implementation(libs.jackson.databind) {
because("CVE-2022-42003")
}
}
- val coroutines_version: String by project
- implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version")
+ implementation(libs.kotlinx.coroutines.core)
- testImplementation(project(":core:test-api"))
+ testImplementation(projects.core.testApi)
testImplementation(kotlin("test-junit"))
}
diff --git a/core/content-matcher-test-utils/build.gradle.kts b/core/content-matcher-test-utils/build.gradle.kts
index 4ddba0fb..75602c64 100644
--- a/core/content-matcher-test-utils/build.gradle.kts
+++ b/core/content-matcher-test-utils/build.gradle.kts
@@ -3,8 +3,8 @@ plugins {
}
dependencies {
- implementation(project(":core:test-api"))
- implementation(kotlin("stdlib-jdk8"))
+ implementation(projects.core.testApi)
+
implementation(kotlin("reflect"))
- implementation("com.willowtreeapps.assertk:assertk-jvm:0.25")
+ implementation(libs.assertk)
}
diff --git a/core/test-api/build.gradle.kts b/core/test-api/build.gradle.kts
index b9137009..1eb8f00c 100644
--- a/core/test-api/build.gradle.kts
+++ b/core/test-api/build.gradle.kts
@@ -6,10 +6,9 @@ plugins {
}
dependencies {
- api(project(":core"))
- implementation(project(":kotlin-analysis"))
+ api(projects.core)
+ implementation(projects.kotlinAnalysis)
implementation("junit:junit:4.13.2") // TODO: remove dependency to junit
- implementation(kotlin("stdlib"))
implementation(kotlin("reflect"))
}