2020-08-26 20:02:36 +07:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm") version "1.4.0"
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "com.cubetiqs.libra"
|
|
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(kotlin("stdlib"))
|
2020-08-26 20:28:32 +07:00
|
|
|
testImplementation("org.junit.vintage:junit-vintage-engine:5.6.2")
|
2020-08-26 20:02:36 +07:00
|
|
|
}
|