I mean can I do something like this in my root bui...
# gradle
k
I mean can I do something like this in my root build file
Copy code
plugins {
    kotlin("jvm") version "1.3.10"
}

allprojects{

    repositories {
        jcenter()
    }

    dependencies {
        implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
        testImplementation("org.assertj:assertj-core:3.11.1")
        testImplementation("org.junit.jupiter:junit-jupiter-api:5.1.0")
        testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.1.0")
    }

}