You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project was upgraded to Gradle 7.2 but it doesn't actually build in Gradle 7.2. To get it to build in Gradle 7.2 this needs to be added to build.gradle:
Also, if sourceCompatibility = 1.8 is added the project builds (and runs) just fine with Java 17. Some version of Java after 11 requires both target and source (it is never really appropriate to use one without the other anyway).
This project was upgraded to Gradle 7.2 but it doesn't actually build in Gradle 7.2. To get it to build in Gradle 7.2 this needs to be added to
build.gradle
:Otherwise it complains about README.md being added to a sourceSet twice (not sure how it is being added twice but Gradle claims it is).
See: https://docs.gradle.org/current/userguide/upgrading_version_6.html#duplicates-strategy
The text was updated successfully, but these errors were encountered: