blob: f5ca9cf0ad3de7339483b481757f97a92c52966c [file] [log] [blame]
apply plugin: "kotlin"
dependencies {
implementation(project(":public"))
}
apply from: "../shared.gradle"
// The artifacts built by this project require at runtime the artifacts from `:buildSrc:private`.
// However, we don't want `:buildSrc:private` artifacts to be on their runtime classpath, because
// that means that any changes to those artifacts can invalidate task up-to-datedness
// (see ../README.md)
tasks["jar"].dependsOn(":private:build")