cprigent
05/04/2018, 12:53 PMbuild.gradle
:
buildscript {
ext {
kotlinVersion = '1.2.40'
springBootVersion = '2.0.1.RELEASE'
}
...
}
can we do something like this :
buildscript {
ext {
kotlinVersion = 'LAST'
springBootVersion = '2.0.1.RELEASE'
}
...
}
?
it would be easier to stay always up to date 😛