jdemeulenaere
07/04/2018, 6:55 PMdsavvinov
07/04/2018, 7:33 PMbuild.gradle
-file (and by default, build.gradle
will be created with some latest stable version, like 1.2.51
)
To use just-compiled compiler (we call them "SNAPSHOT"), you need to actually take that compiler from some repository -- e.g., local maven repository. Something like ./gradlew dist install publish
should build artifacts from sources and publish them in local maven repository under 1.2-SNAPSHOT
version, on which you can depend later.jdemeulenaere
07/05/2018, 12:31 PMdsavvinov
07/05/2018, 12:37 PMbuild.gradle
already with 1.2-SNAPSHOT
version of Kotlin in it. But nobody have been bothered enough yet to do it 🙂 (probably, because for debugging compiler in Gradle, you'll still have to go extra mile with attaching debugger to Gradle Compiler Daemon)jdemeulenaere
07/05/2018, 1:06 PM