This message was deleted.
# community-support
s
This message was deleted.
t
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
(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)
в
@Thomas Broyer Thank you!