Skip to content

Commit

Permalink
removed java-project for having java.with... needed by central publish
Browse files Browse the repository at this point in the history
  • Loading branch information
p3t committed Jun 22, 2024
1 parent 93c76ac commit c7b44ed
Showing 1 changed file with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id("io.freefair.lombok")
id("org.springframework.boot") apply false
id("io.spring.dependency-management")
id("org.kordamp.gradle.project")
`jacoco`
id("org.kordamp.gradle.spotbugs")
id("com.github.kt3k.coveralls")
id("org.kordamp.gradle.coveralls")
Expand All @@ -24,14 +24,18 @@ dependencyManagement {
}

}
//java {
// withSourcesJar()
// withJavadocJar()
//}
// This is needed for sontarTypeCentralUpload! Has conflict with kordamp.java-project
java {
withSourcesJar()
withJavadocJar()
}
tasks.named<Jar>("bootJar") {
enabled = false
}
tasks {
jacocoTestReport {
dependsOn(tasks.test) // tests are required to run before generating the report
}
delombok {
enabled = false
}
Expand Down

0 comments on commit c7b44ed

Please sign in to comment.