Answers for "Artifact sample-springboot-demo-0.0.1-SNAPSHOT.jar wasn't produced by this build."

0

Artifact sample-springboot-demo-0.0.1-SNAPSHOT.jar wasn't produced by this build.

publishing {
    publications {
        create<MavenPublication>("mavenJava") {
            //from(components["java"]) // <-- this is not required
            artifact(tasks.bootJar.get()) // <-- this is required
        }
    }
}
Posted by: Guest on April-30-2021

Browse Popular Code Answers by Language