Closed dmurat closed 1 year ago
Could you give more details on the setup? Does the project have the java-library
plugin applied to it?
It is a multi-module project. Some modules have java-library
applied, while others don't.
If you want to see the project or build it yourself, the project is available at https://github.com/croz-ltd/klokwrk-project.
If you have any hunch or idea about the problem and maybe how to avoid it, please advise. Of course, if you need any help with the example project, I'll be happy to help.
Related to https://github.com/kordamp/kordamp-gradle-plugins/issues/504
Workaround: disable the source plugin in projects that have the java-platform
plugin applied [klokwrk-platform-base, klokwrk-platform-micronaut, klokwrk-platform-spring-boot]:
config {
info {
setName(project.name)
setDescription(project.description)
}
artifacts {
source {
enabled = false
}
}
publishing {
setPublications(["klokwrkPlatformBase"])
pom {
setPackaging("pom")
}
}
}
Thank you very much. You are fantastic 🎉 I tried with Gradle 7.6.1, and it works 😄
There are a few (4 exactly) warnings I'm getting about Gradle 8 compatibility. I will also report those if you don't mind.
When I try to invoke a Gradle command against my project, MissingPropertyException is thrown, as shown below.
I'm using kordamp-gradle-plugins 0.49.0 and Gradle 7.5.1