Skip to content

Commit

Permalink
chore(gradle): Omit a default argument when publishing
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Schuberth <[email protected]>
  • Loading branch information
sschuberth committed Oct 7, 2024
1 parent b9e6b8d commit 901aa9d
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
* License-Filename: LICENSE
*/

import com.vanniktech.maven.publish.SonatypeHost

plugins {
// Apply third-party plugins.
id("com.vanniktech.maven.publish")
Expand All @@ -29,7 +27,7 @@ mavenPublishing {
parent?.let { "${getGroupId(it.parent)}.${it.name.replace("-", "")}" }.orEmpty()

coordinates(groupId = "org${getGroupId(parent)}")
publishToMavenCentral(SonatypeHost.DEFAULT)
publishToMavenCentral()

pom {
name = project.name
Expand Down

0 comments on commit 901aa9d

Please sign in to comment.