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 Spring Basics Spring Components and Configuring Our App Configuring Gradle for Spring Development

Not working on Gradle 4.4

I have this code in the build.gradle, and sync fails:

plugins { id 'java' id 'idea' id 'eclipse' id "org.springframework.boot" version "2.0.3.RELEASE" }

group 'com.berenguerIV' version '1.0-SNAPSHOT'

sourceCompatibility = 1.8

repositories { mavenCentral() }

dependencies { compile 'org.springframework.boot:spring-boot-starter-web' }

Any ideas why this might fail?

1 Answer

Without any given errror messages it is hard to guess, but you might want to stick to groovy syntax and respect newlines:

plugins {
    id 'java'
    id 'idea'
    id 'eclipse'
    id "org.springframework.boot" version "2.0.3.RELEASE"
}

group 'com.berenguerIV'
version '1.0-SNAPSHOT'

sourceCompatibility = 1.8

repositories {
    mavenCentral()
}

dependencies {
    compile 'org.springframework.boot:spring-boot-starter-web'
}

This one builds for me.

Also, check if you using a different version of java.

For me, I used below syntax for Java 10 and it worked me

//------------------------------------------------------------------------------------------------------------------------

plugins { id 'java' id 'idea' id 'eclipse' id 'org.springframework.boot' version '1.4.3.RELEASE' }

group 'com.teamtreehouse' version '1.0-SNAPSHOT'

sourceCompatibility = 1.10

repositories { mavenCentral() }

dependencies { // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '2.0.5.RELEASE'

} //--------------------------------------------------------------------------------------------------------------------------------

Thank you. This worked as of 06/04/2019.

It's a shame though, looks like this course is going to be full of these issues.