I'm trying to follow tutorial: <https://kotlinlang...
# gradle
j
I'm trying to follow tutorial: https://kotlinlang.org/docs/tutorials/coroutines-basic-jvm.html using Gradle DSL and I'm getting a lot of errors

https://snag.gy/Akm20J.jpg

after creating fresh new project in InteliJ IDEA 2017.3.2. During build I'm getting
Copy code
Could not find org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.20-eap-33.
Searched in the following locations:
    <http://dl.bintray.com/kotlin/kotlin-eap-1.2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.2.20-eap-33/kotlin-gradle-plugin-1.2.20-eap-33.pom>
    <http://dl.bintray.com/kotlin/kotlin-eap-1.2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.2.20-eap-33/kotlin-gradle-plugin-1.2.20-eap-33.jar>
    <https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.2.20-eap-33/kotlin-gradle-plugin-1.2.20-eap-33.pom>
    <https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.2.20-eap-33/kotlin-gradle-plugin-1.2.20-eap-33.jar>
Required by:
    project :
Any ideas?
n
For the time being avoid using the IntelliJ wizard for generating Gradle Kotlin DSL build files: 1. Build files are out of date 2. Includes invalid ways of doing things in the build files 3. Wizard uses an out of date version of Gradle
1
Instead of using the wizard follow this Gradle Kotlin DSL tutorial: https://medium.com/@napperley/gradle-kotlin-dsl-tutorial-223370af9cd8