From 98b01eeed89dcf25c5ff1412b9c623e989de9017 Mon Sep 17 00:00:00 2001 From: morisil <817413+morisil@users.noreply.github.com> Date: Thu, 29 Aug 2024 19:34:31 +0000 Subject: [PATCH] README.md gradle dependencies update to ${VERSION} --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 61ed6d5..8737703 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Add to your `build.gradle.kts`: ```kotlin dependencies { - implementation("com.xemantic.kotlin:xemantic-kotlin-swing-dsl-core:1.2") + implementation("com.xemantic.kotlin:xemantic-kotlin-swing-dsl-core:${VERSION}") runtimeOnly("org.jetbrains.kotlinx:kotlinx-coroutines-swing:1.8.1") } ``` @@ -156,6 +156,6 @@ Add this dependency to your `build.gradle.kts` for testing support: ```kotlin dependencies { - testImplementation("com.xemantic.kotlin:xemantic-kotlin-swing-dsl-test:1.2") + testImplementation("com.xemantic.kotlin:xemantic-kotlin-swing-dsl-test:${VERSION}") } ```