Add support for compile-time dependencies in :API

This commit is contained in:
2021-03-02 20:00:31 +01:00
parent c5e2888048
commit 95ee0a5c62
7 changed files with 55 additions and 7 deletions

View File

@@ -10,5 +10,10 @@ repositories {
}
dependencies {
implementation "org.joml:joml:${jomlVersion}"
}
task relayDependencies(type: Copy) {
from configurations.runtimeClasspath
into file("build/dependencies")
}