Aurimas Liutikas | 4209691 | 2021-11-04 10:08:55 -0700 | [diff] [blame] | 1 | apply plugin: "kotlin" |
| 2 | |
| 3 | dependencies { |
| 4 | implementation(project(":public")) |
| 5 | } |
| 6 | |
Jeff Gaston | d72edf2 | 2021-08-24 11:53:54 -0400 | [diff] [blame] | 7 | apply from: "../shared.gradle" |
Jeff Gaston | 7ef9d25 | 2023-01-03 14:15:08 -0500 | [diff] [blame^] | 8 | |
| 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) |
| 13 | tasks["jar"].dependsOn(":private:build") |