GP-6385: Some more gradle tweaks

This commit is contained in:
Ryan Kurtz
2026-01-30 11:07:46 -05:00
parent d160f22f09
commit 675be71ebb
8 changed files with 43 additions and 40 deletions

View File

@@ -25,12 +25,12 @@ dependencies {
}
project.afterEvaluate {
rootProject.ext.mdDeps.clear()
rootProject.ext.markdownDeps.clear()
configurations.runtimeClasspath.resolve().each { File f ->
rootProject.ext.mdDeps.add(f.getAbsolutePath())
rootProject.ext.markdownDeps.add(f.getAbsolutePath())
}
sourceSets.main.output.files.each { File f ->
rootProject.ext.mdDeps.add(f.getAbsolutePath())
rootProject.ext.markdownDeps.add(f.getAbsolutePath())
}
}