We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea58fad commit a2ee402Copy full SHA for a2ee402
build.gradle.kts
@@ -12,6 +12,7 @@ buildscript {
12
13
plugins {
14
`maven-publish`
15
+ `version-catalog`
16
alias(libs.plugins.kotlin.multiplatform) apply false
17
alias(libs.plugins.kotlin.serialization) apply false
18
alias(libs.plugins.gitVersion)
@@ -239,4 +240,20 @@ fun createDocsIndexPage(): String {
239
240
}
241
242
-}
243
+}
244
+
245
+catalog {
246
+ versionCatalog {
247
+ from(files("gradle/libs.versions.toml"))
248
+ }
249
250
251
+publishing {
252
+ publications {
253
+ create<MavenPublication>("versionCatalog") {
254
+ groupId = "org.modelix"
255
+ artifactId = "core-version-catalog"
256
+ from(components["versionCatalog"])
257
258
259
0 commit comments