Skip to content

Instantly share code, notes, and snippets.

@GoldenStack
Created January 6, 2023 00:41
Show Gist options
  • Save GoldenStack/74a7da7a98564082d58556b2888b2b80 to your computer and use it in GitHub Desktop.
Save GoldenStack/74a7da7a98564082d58556b2888b2b80 to your computer and use it in GitHub Desktop.
Fixes "ERROR: No build artifacts found". Pick the one that fits your project.
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}
configure<PublishingExtension> {
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment