user2809386
user2809386

Reputation:

Update Gradle in Grails project

I am using Grails 3.0.5

After I create a project... at root project has folder .gradle with 2.3 version...

How to update that Gradle version?

I tried to download Grails 3.0.9 and create a new project..but it still use Gradle 2.3 version..

I tried to download Gradle 2.6 from this link , because I am using windows... I tried to run gradlew.bat ... and recreate-app with Grails 3.0.9 version...and i still get a new project with Gradle 2.3

Upvotes: 2

Views: 1524

Answers (1)

Burt Beckwith
Burt Beckwith

Reputation: 75671

That's defined in gradle.properties. If you change the version there (I recommend using 2.8 for the new features and speed improvements) you can use the wrapper that's there from Gradle 2.3 to generate a new wrapper for whatever version you're updating to; just run

gradlew.bat wrapper

or

./gradlew wrapper

if you were using Linux or OSX, and it will update the gradlew and gradlew.bat scripts, and the wrapper files under gradle/wrapper.

Upvotes: 3

Related Questions