22 lines
407 B
Plaintext
22 lines
407 B
Plaintext
|
|
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
val gsonDepVersion: String by project
|
|
val specifyKotlinAsDependency: String by project
|
|
|
|
dependencies {
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
|
|
|
implementation(project(":linear-algebra"))
|
|
implementation(project(":gson"))
|
|
implementation(project(":"))
|
|
|
|
implementation("com.google.code.gson:gson:$gsonDepVersion")
|
|
}
|