Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Adding Dependencies

Could not find method compile() for arguments Gradle

Not a question but an answer from an issue I ran into hoping it'll help others.

The compile dependencies didn't work based on the video and it's because I have a newer version of Gradle.

The compile, runtime, testCompile, and testRuntime configurations introduced by the Java plugin have been deprecated since Gradle 4.10 (Aug 27, 2018), and were finally removed in Gradle 7.0 (Apr 9, 2021).

The aforementioned configurations should be replaced by implementation, runtimeOnly, testImplementation, and testRuntimeOnly, respectively.

I changed the compile to implementation and it worked.

2 Answers

Hi, the Groovy syntax is deprecated for the newest version of JetBrains IntelliJ IDEA.