Skip to content

Commit

Permalink
[patch] aligning everything on embedded kotlin for now, as this is al…
Browse files Browse the repository at this point in the history
…most entirely plugins
  • Loading branch information
robertfmurdock committed Nov 4, 2023
1 parent 5cc4992 commit 34dc16f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tools/digger-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ java {
dependencies {
implementation(libs.org.ajoberstar.grgit.grgit.core)
implementation(project(":digger-model"))
testImplementation(libs.org.jetbrains.kotlin.kotlin.test.junit5)
testImplementation(kotlin("test-junit5", embeddedKotlinVersion))
}

tasks {
Expand Down
4 changes: 2 additions & 2 deletions tools/digger-json/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

plugins {
id("com.zegreatrob.tools.plugins.mp")
alias(libs.plugins.org.jetbrains.kotlin.plugin.serialization)
id("org.jetbrains.kotlin.plugin.serialization") version embeddedKotlinVersion
}

group = "com.zegreatrob.tools"
Expand All @@ -22,7 +22,7 @@ dependencies {
commonMainImplementation("org.jetbrains.kotlinx:kotlinx-serialization-json")
commonTestImplementation(kotlin("test"))
commonTestImplementation("com.benasher44:uuid")
"jvmTestImplementation"(libs.org.jetbrains.kotlin.kotlin.test.junit5)
"jvmTestImplementation"(kotlin("test-junit5", embeddedKotlinVersion))
}

tasks {
Expand Down
2 changes: 1 addition & 1 deletion tools/digger-model/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ kotlin {
dependencies {
commonMainApi(platform(project(":dependency-bom")))
commonMainApi("org.jetbrains.kotlinx:kotlinx-datetime")
"jvmTestImplementation"(libs.org.jetbrains.kotlin.kotlin.test.junit5)
"jvmTestImplementation"(kotlin("test-junit5", embeddedKotlinVersion))
}

tasks {
Expand Down
2 changes: 1 addition & 1 deletion tools/digger-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies {
implementation(project(":digger-core"))
implementation(project(":digger-json"))
implementation(libs.org.ajoberstar.grgit.gradle.plugin)
testImplementation(libs.org.jetbrains.kotlin.kotlin.test.junit5)
testImplementation(kotlin("test-junit5", embeddedKotlinVersion))
"functionalTestImplementation"(platform(libs.org.junit.junit.bom))
}

Expand Down
3 changes: 0 additions & 3 deletions tools/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
[versions]
org-ajoberstar-grgit = "5.2.1"
org-jetbrains-kotlin = "1.9.10"

[libraries]
com-benasher44-uuid = "com.benasher44:uuid:0.8.1"
# @keep
org-ajoberstar-grgit-gradle-plugin = { module = "org.ajoberstar.grgit:org.ajoberstar.grgit.gradle.plugin", version.ref = "org-ajoberstar-grgit" }
org-ajoberstar-grgit-grgit-core = { module = "org.ajoberstar.grgit:grgit-core", version.ref = "org-ajoberstar-grgit" }
org-jetbrains-kotlin-kotlin-test-junit5 = { module = "org.jetbrains.kotlin:kotlin-test-junit5", version.ref = "org-jetbrains-kotlin" }
org-jetbrains-kotlinx-kotlinx-datetime = "org.jetbrains.kotlinx:kotlinx-datetime:0.4.1"
org-jetbrains-kotlinx-kotlinx-serialization-bom = "org.jetbrains.kotlinx:kotlinx-serialization-bom:1.6.0"
org-junit-junit-bom = "org.junit:junit-bom:5.10.0"
Expand All @@ -17,4 +15,3 @@ com-gradle-plugin-publish = "com.gradle.plugin-publish:1.2.1"
io-github-gradle-nexus-publish-plugin = "io.github.gradle-nexus.publish-plugin:2.0.0-rc-1"
nl-littlerobots-version-catalog-update = "nl.littlerobots.version-catalog-update:0.8.1"
org-ajoberstar-grgit = { id = "org.ajoberstar.grgit", version.ref = "org-ajoberstar-grgit" }
org-jetbrains-kotlin-plugin-serialization = "org.jetbrains.kotlin.plugin.serialization:1.9.20"
2 changes: 1 addition & 1 deletion tools/tagger-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ configurations["functionalTestImplementation"].extendsFrom(configurations["testI

dependencies {
implementation(libs.org.ajoberstar.grgit.gradle.plugin)
testImplementation(libs.org.jetbrains.kotlin.kotlin.test.junit5)
testImplementation(kotlin("test-junit5", embeddedKotlinVersion))
"functionalTestImplementation"(platform(libs.org.junit.junit.bom))
}

Expand Down

0 comments on commit 34dc16f

Please sign in to comment.