aboutsummaryrefslogtreecommitdiff
path: root/plugins/mathjax/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mathjax/build.gradle.kts')
-rw-r--r--plugins/mathjax/build.gradle.kts22
1 files changed, 10 insertions, 12 deletions
diff --git a/plugins/mathjax/build.gradle.kts b/plugins/mathjax/build.gradle.kts
index 4219a66b..d4e5979a 100644
--- a/plugins/mathjax/build.gradle.kts
+++ b/plugins/mathjax/build.gradle.kts
@@ -6,22 +6,20 @@ plugins {
}
dependencies {
- compileOnly(project(":core"))
- implementation(kotlin("stdlib-jdk8"))
- implementation(kotlin("stdlib"))
+ compileOnly(projects.core)
implementation(kotlin("reflect"))
- implementation(project(":plugins:base"))
+ implementation(projects.plugins.base)
- val jsoup_version: String by project
- testImplementation("org.jsoup:jsoup:$jsoup_version")
- testImplementation(project(":plugins:base:base-test-utils"))
- testImplementation(project(":core:content-matcher-test-utils"))
+ testImplementation(libs.jsoup)
+ testImplementation(projects.plugins.base.baseTestUtils)
+ testImplementation(projects.core.contentMatcherTestUtils)
testImplementation(kotlin("test-junit"))
- testImplementation(project(":kotlin-analysis"))
+ testImplementation(projects.kotlinAnalysis)
- testImplementation(project(":test-utils"))
- testImplementation(project(":core:test-api"))
- testImplementation("org.junit.jupiter:junit-jupiter:5.6.0")
+ testImplementation(projects.testUtils)
+ testImplementation(projects.core.testApi)
+ testImplementation(platform(libs.junit.bom))
+ testImplementation(libs.junit.jupiter)
}
registerDokkaArtifactPublication("mathjaxPlugin") {