Hi, I am having trouble getting my project to comp...
# gradle
a
Hi, I am having trouble getting my project to compile using the kotlin compiler I have built from source. I have created a kotlin starter project with
gradle init --type kotlin-application
and I have added the lines found here to my settings.gradle: https://github.com/JetBrains/kotlin/#including-into-composite-build When I do a
./gradlew build --info
in my starter project, I can see that the there are
:kotlin:*
tasks running (though they re-run only after I do a
./gradlew dist
in the kotlin compiler repo) but the changes I've made to the Kotlin compiler (I've added some print/logging statements) are not showing up. I'm new to gradle - do I need to disable running the kotlin compiler via the daemon, or do something else in my gradle files to point gradle at my built-from-source kotlin compiler? Any help would be greatly appreciated!! Also if this question fits better on the forum, please let me know; I would be happy to move it there 🙂
t
you can check what actual task are running by invoking
./gradlew -m build
👍 1