blob: 9e8bb311e30ee876edfa2b0b8454746a0a0f60a2 [file]
description = "Parcelize compiler plugin (Backend)"
plugins {
kotlin("jvm")
}
dependencies {
implementation(project(":plugins:parcelize:parcelize-compiler:parcelize.common"))
compileOnly(intellijCore())
compileOnly(project(":compiler:fir:cones"))
compileOnly(project(":compiler:fir:tree"))
compileOnly(project(":compiler:fir:resolve"))
compileOnly(project(":compiler:fir:plugin-utils"))
compileOnly(project(":compiler:fir:checkers"))
compileOnly(project(":compiler:fir:checkers:checkers.jvm"))
compileOnly(project(":compiler:ir.backend.common"))
compileOnly(project(":compiler:ir.tree"))
compileOnly(project(":compiler:fir:entrypoint"))
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}
runtimeJar()
javadocJar()
sourcesJar()