Skip to content

Commit

Permalink
Declare kotlin-* libs versions explicitly
Browse files Browse the repository at this point in the history
Ref #253
  • Loading branch information
serpro69 committed Jan 16, 2025
1 parent 4f5ec86 commit 4279e8a
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ icu4j = { module = "com.ibm.icu:icu4j", version.ref = "icu4j" }
jackson-databind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref = "jackson" }
jackson-module-kotlin = { module = "com.fasterxml.jackson.module:jackson-module-kotlin", version.ref = "jackson" }
kotlin-bom = { module = "org.jetbrains.kotlin:kotlin-bom", version.ref = "kotlin" }
kotlin-stdlib-common = { module = "org.jetbrains.kotlin:kotlin-stdlib-common" }
kotlin-stdlib-jdk8 = { module = "org.jetbrains.kotlin:kotlin-stdlib-jdk8" }
kotlin-reflect = { module = "org.jetbrains.kotlin:kotlin-reflect" }
kotlin-stdlib-common = { module = "org.jetbrains.kotlin:kotlin-stdlib-common", version.ref = "kotlin" }
kotlin-stdlib-jdk8 = { module = "org.jetbrains.kotlin:kotlin-stdlib-jdk8", version.ref = "kotlin" }
kotlin-reflect = { module = "org.jetbrains.kotlin:kotlin-reflect", version.ref = "kotlin" }
kotlinpoet = { module = "com.squareup:kotlinpoet", version.ref = "kotlinpoet" }
kotlinpoet-ksp = { module = "com.squareup:kotlinpoet-ksp", version.ref = "kotlinpoet" }
rgxgen = { module = "com.github.curious-odd-man:rgxgen", version.ref = "rgxgen" }
Expand All @@ -61,11 +61,21 @@ test-kotest-property = { module = "io.kotest:kotest-property", version.ref = "ko
test-kotest-runner = { module = "io.kotest:kotest-runner-junit5", version.ref = "kotest" }

[bundles]
gradle-plugins = ["gradle-plugin-kotlin", "gradle-plugin-bcv", "gradle-plugin-dokka", "gradle-plugin-semantic-versioning", "gradle-plugin-shadow"]
gradle-plugins = [
"gradle-plugin-kotlin",
"gradle-plugin-bcv",
"gradle-plugin-dokka",
"gradle-plugin-semantic-versioning",
"gradle-plugin-shadow",
]
jackson = ["jackson-databind", "jackson-module-kotlin"]
kotlin = ["kotlin-stdlib-common", "kotlin-stdlib-jdk8", "kotlin-reflect"]
kotlinpoet = ["kotlinpoet", "kotlinpoet-ksp"]
test-kotest = ["test-kotest-runner", "test-kotest-assertions-core", "test-kotest-property"]
test-kotest = [
"test-kotest-runner",
"test-kotest-assertions-core",
"test-kotest-property",
]

[plugins]
# these are for root build.gradle.kts
Expand Down

1 comment on commit 4279e8a

@chimanos
Copy link

@chimanos chimanos commented on 4279e8a Jan 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, I have an error during the build since this commit, I don't know if you saw this:

Errors occurred while building effective model from /.gradle/caches/modules-2/files-2.1/io.github.serpro69/kotlin-faker-tvshows/2.0.0-rc.7/8b3a504ee8728ce4ca042c93a62150fae1695b9a/kotlin-faker-tvshows-2.0.0-rc.7.pom: 'dependencies.dependency.version' for org.jetbrains.kotlin:kotlin-stdlib-common:jar is missing. in io.github.serpro69:kotlin-faker-tvshows:2.0.0-rc.7 'dependencies.dependency.version' for org.jetbrains.kotlin:kotlin-stdlib-jdk8:jar is missing. in io.github.serpro69:kotlin-faker-tvshows:2.0.0-rc.7 'dependencies.dependency.version' for org.jetbrains.kotlin:kotlin-reflect:jar is missing. in io.github.serpro69:kotlin-faker-tvshows:2.0.0-rc.7

Please sign in to comment.