In these days, I am trying to write some codes to experience the Spring reactive features and kotlin extension in Spring 5, and I also prepared a gradle Kotlin DSL build.gradle
With Kotlin DSL ext has been changed to extra and it can be used under buildscript.
Eg :-
buildscript { // Define versions in a single place extra.apply{ set("minSdkVersion", 26) set("targetSdkVersion", 27) } }