Skip to content

Instantly share code, notes, and snippets.

@martinbonnin
Created June 21, 2021 08:38
Show Gist options
  • Save martinbonnin/e6b21c289fd98d566f297c0194f18ee4 to your computer and use it in GitHub Desktop.
Save martinbonnin/e6b21c289fd98d566f297c0194f18ee4 to your computer and use it in GitHub Desktop.
publishing {
publications {
create<MavenPublication>("maven") {
groupId = project.group.toString()
artifactId = project.name
version = project.version.toString()
from(components["kotlin"])
artifact(tasks["sourcesJar"])
artifact(tasks["javadocJar"])
pom {
// Configure your pom file here
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment