blob: c6f670562ec152becc93036bee86004d2982c9b1 [file] [log] [blame] [edit]
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()