blob: f5ca9cf0ad3de7339483b481757f97a92c52966c [file] [log] [blame]
Aurimas Liutikas42096912021-11-04 10:08:55 -07001apply plugin: "kotlin"
2
3dependencies {
4 implementation(project(":public"))
5}
6
Jeff Gastond72edf22021-08-24 11:53:54 -04007apply from: "../shared.gradle"
Jeff Gaston7ef9d252023-01-03 14:15:08 -05008
9// The artifacts built by this project require at runtime the artifacts from `:buildSrc:private`.
10// However, we don't want `:buildSrc:private` artifacts to be on their runtime classpath, because
11// that means that any changes to those artifacts can invalidate task up-to-datedness
12// (see ../README.md)
13tasks["jar"].dependsOn(":private:build")