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

Issues with GifLab project, LocaleDate cannot compile with 1.5

Hi Folks,

Working my way through the giflab spring course and having an issues with my gifRepository.java file. When I import import java.time.LocalDate; and run bootRun I get this error.

java

/Users/caleb.king/Documents/Batcave/Java/giflib/src/main/java/me/calebking/giflib/data/GifRepository.java:7: error: package java.time does not exist
import java.time.LocalDate;

https://github.com/CalebKing3/giflab.git

1 Answer

Kourosh Raeen
Kourosh Raeen
23,733 Points

If you look at the build.gradle file of your project there is this line: sourceCompatibility = 1.5

The error message is complaining that the package java.time does not exist. You are importing LocalDate in GifRepository.java but that class needs Java 8. Remove sourceCompatibility = 1.5 from the build.gradle file and I think that should take care of the problem.