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 trialDavid Sielert
775 PointsRunning code on Java 9+
I'm posting a solution more than a question. On java 9+ apparently the Java EE libraries are no longer included so you must add the following to your gradle build file if you are getting an error about Hibernate properties
// https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api
compile group: 'javax.xml.bind', name: 'jaxb-api', version: '2.4.0-b180830.0359'
// https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-impl
compile group: 'com.sun.xml.bind', name: 'jaxb-impl', version: '2.4.0-b180830.0438'
// https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-core
compile group: 'com.sun.xml.bind', name: 'jaxb-core', version: '2.3.0.1'
// https://mvnrepository.com/artifact/javax.activation/activation
compile group: 'javax.activation', name: 'activation', version: '1.1.1'
```
3 Answers
Daniel Phillips
26,940 PointsThis helped me. Thanks!
Michael Newman
39,508 PointsHelped a ton thank you! If anyone sees this and could link me to where I can read more about what's going on here, I'd appreciate that as well.
Khari McGhie
2,339 PointsThank you so much, this was a massive help!