I would like to change my project from Grails from 3.0.9
to 3.0.10
since latter contains Promise API.
How to do that in IntelliJ?
I would like to change my project from Grails from 3.0.9
to 3.0.10
since latter contains Promise API.
How to do that in IntelliJ?
in the gradle.properties
file change
grailsVersion=3.0.10
also in the build.gradle
change
buildscript {
ext {
grailsVersion = project.grailsVersion
}
}
You just need to change the grails version in gradle.properties. The gradle build script will pull the required jar files from the grails repo specified in your build file.