ed7dd6fccb
They are a kind of a hack applied in light-classes and it'd be nice to prevent them being used in irrelevant contexts kotlin-serialization-compiler module should not depend on idea, thus we can't use annotations directly there. So, we copy-paste them and add a test on names consistency
30 lines
589 B
Kotlin
30 lines
589 B
Kotlin
|
|
description = "Kotlinx Serialization IDEA Plugin"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
jvmTarget = "1.6"
|
|
|
|
dependencies {
|
|
compile(project(":kotlinx-serialization-compiler-plugin"))
|
|
compile(project(":idea"))
|
|
compile(project(":idea:idea-gradle"))
|
|
compile(project(":idea:idea-maven"))
|
|
compileOnly(intellijDep())
|
|
excludeInAndroidStudio(rootProject) { compileOnly(intellijPluginDep("maven")) }
|
|
compileOnly(intellijPluginDep("gradle"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
runtimeJar()
|
|
|
|
ideaPlugin()
|
|
|