Skip to content

Commit 32e238d

Browse files
committed
fix: version catalog wasn't published
The version catalog was only published to maven-local, because there was no publishing repository specified for the root project.
1 parent 16a361c commit 32e238d

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

build.gradle.kts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,6 @@ plugins {
2424
alias(libs.plugins.dokka)
2525
}
2626

27-
repositories {
28-
mavenLocal()
29-
maven { url = uri("https://artifacts.itemis.cloud/repository/maven-mps/") }
30-
mavenCentral()
31-
}
32-
3327
group = "org.modelix"
3428
description = "Projectional Editor"
3529
version = computeVersion()
@@ -67,7 +61,9 @@ subprojects {
6761
freeCompilerArgs += listOf("-Xjvm-default=all-compatibility")
6862
}
6963
}
64+
}
7065

66+
allprojects {
7167
repositories {
7268
mavenLocal()
7369
maven { url = uri("https://artifacts.itemis.cloud/repository/maven-mps/") }

0 commit comments

Comments
 (0)