Skip to content

Commit

Permalink
Fix group name on published artifacts (#439)
Browse files Browse the repository at this point in the history
Co-authored-by: Andy Coates <[email protected]>
  • Loading branch information
big-andy-coates and Andy Coates authored Dec 10, 2024
1 parent 6e9e601 commit b4bf7ec
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ allprojects {

subprojects {
project.version = project.parent?.version!!
project.group = project.parent?.group!!

apply(plugin = "maven-publish")
apply(plugin = "signing")
Expand All @@ -50,7 +51,10 @@ subprojects {
mavenCentral()
maven {
url = uri("https://packages.confluent.io/maven/")
group = "io.confluent"
content {
includeGroup("io.confluent")
includeGroup("org.apache.kafka")
}
}
}

Expand Down

0 comments on commit b4bf7ec

Please sign in to comment.