21 lines
348 B
Kotlin
21 lines
348 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
description = "Common klib reader and writer"
|
|
|
|
dependencies {
|
|
api(kotlinStdlib())
|
|
api(project(":kotlin-util-io"))
|
|
testImplementation(commonDependency("junit:junit"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
publish()
|
|
|
|
standardPublicJars() |