Use kotlin short-form for dependency declarations
This commit is contained in:
parent
80bd9dd692
commit
436d0990cb
@ -24,13 +24,13 @@ allprojects {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
implementation(kotlin("stdlib-jdk8"))
|
||||||
|
|
||||||
testImplementation("junit:junit:4.12")
|
testImplementation("junit:junit:4.12")
|
||||||
testImplementation("org.jetbrains.kotlin:kotlin-test-common")
|
testImplementation(kotlin("test-common"))
|
||||||
testImplementation("org.jetbrains.kotlin:kotlin-test-annotations-common")
|
testImplementation(kotlin("test-annotations-common"))
|
||||||
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
|
testImplementation(kotlin("test-junit"))
|
||||||
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
testImplementation(kotlin("test"))
|
||||||
}
|
}
|
||||||
|
|
||||||
val SourceSet.kotlin: SourceDirectorySet
|
val SourceSet.kotlin: SourceDirectorySet
|
||||||
|
Loading…
Reference in New Issue
Block a user