blob: 5425b7bc5156d6d202830a78651403f9b890996e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
buildscript {
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'kotlin'
dependencies {
implementation project(':core')
implementation group: 'junit', name: 'junit', version: '4.12'
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-test-junit', version: kotlin_version
}
|