I suppose you don't use the same version of Gradle as your colleagues.
If you can, use the gradle wrapper to make sure everyone's using the same version. Maybe it's actually already in place on the project: use
./gradlew bootRun
instead of
gradle bootRun
.
☝️ 1
Thomas Broyer
04/27/2023, 11:51 AM
(fwiw, that would be an incompatibility between a plugin trying to create a LazyPublishArtifact with the old API, and a newer version of Gradle where the API has changed)