UMM-CSci-3601 / intro-to-git

A group exercise practicing with various git ideas and tools
MIT License
2 stars 7 forks source link

Fix Gradle warnings about deprecated features #113

Closed NicMcPhee closed 8 months ago

NicMcPhee commented 8 months ago

When you run Gradle on this project, you get the following warning:

Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0.

You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.

For more on this, please refer to https://docs.gradle.org/8.5/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation.

We should figure out what's happening here and fix it, both here an in the subsequent labs and iteration template.

This only happens with Gradle v8.5, so we need to do #115 first.

NicMcPhee commented 8 months ago

This page describes the problem and how to fix it.

NicMcPhee commented 8 months ago

Since this problem was introduced by upgrading to Gradle v8.5 in #115, I just included the fix there as well.