Open simaotwx opened 1 year ago
The code
compileKotlin { dependsOn(tasks.getByPath('compileGroovy')) classpath += files(compileGroovy.destinationDir) }
was converted to:
compileKotlin { dependsOn tasks.getByPath("compileGroovy") classpath(+= files(compileGroovy.destinationDir)) }
which is incorrect.
Expression 'compileKotlin' cannot be invoked as a function. The function 'invoke()' is not found
The code
was converted to:
which is incorrect.