Skip to content

Commit e0fce41

Browse files
committed
fix artifact id's
1 parent 60e5cca commit e0fce41

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

autoconfigure/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ plugins {
55
}
66
apply plugin: "io.freefair.maven-jars"
77
apply plugin: "io.freefair.javadoc-links"
8-
9-
archivesBaseName = "okhttp-spring-boot-autoconfigure"
108
apply plugin: "io.freefair.maven-publish-java"
119

10+
publishing.publications.mavenJava.artifactId = "okhttp-spring-boot-autoconfigure"
11+
1212
javadoc.options.linkSource true
1313

1414
bootRepackage.enabled = false

starters/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
subprojects { Project starterProject ->
2-
starterProject.pluginManager.withPlugin("java") {
3-
starterProject.archivesBaseName = "$starterProject.name-spring-boot-starter"
2+
starterProject.pluginManager.withPlugin("io.freefair.maven-publish-java") {
3+
starterProject.publishing.publications.mavenJava.artifactId = "$starterProject.name-spring-boot-starter"
44
}
55
}

0 commit comments

Comments
 (0)