One way I've found useful for migrations is to hav...
# gradle
m
One way I've found useful for migrations is to have a root
build.gradle.kts
that has an
apply { from('build.gradle') }
and add the
rootProject.buildFileName = 'build.gradle.kts'
and then you can slowly port pieces over. Can also work with using
apply from: 'build.gradle.kts'
in other file. You do need to knowledgeable about the build classpath available to you in each script. I haven't personally had to touch the project schema file you were mentioning.
👍 5