porcelli opened a new issue, #2274: URL: https://github.com/apache/incubator-kie-issues/issues/2274
The `kogito-gradle-plugin-test` module fails during release builds when the `apache-release` profile is active. The `maven-javadoc-plugin:jar` goal tries to parse Java sources that depend on Spring Boot, but Spring Boot is not declared as a Maven dependency (it's managed by Gradle). Since this module already excludes all Java from Maven compilation, javadoc should be skipped entirely. **Error:** ``` package org.springframework.boot does not exist package org.springframework.boot.autoconfigure does not exist ``` **Fix:** Add `<maven.javadoc.skip>true</maven.javadoc.skip>` to the module's properties. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
