20368a9e40
Most of the declarations are made public as-is, except for some reader implementation details and MetadataExtensions.INSTANCES. Also added missing delegation in KmDeclarationContainerVisitor.visitExtensions #KT-59182 Fixed
22 lines
319 B
Kotlin
22 lines
319 B
Kotlin
description = "Kotlin metadata manipulation library"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { }
|
|
}
|
|
|
|
dependencies {
|
|
api(kotlinStdlib())
|
|
compileOnly(project(":core:metadata"))
|
|
compileOnly(protobufLite())
|
|
}
|
|
|
|
kotlin {
|
|
explicitApi()
|
|
}
|