mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-09 20:18:01 +08:00
committed by
Ryan Kurtz
parent
dfc4ec586a
commit
d160f22f09
@@ -89,6 +89,26 @@ else {
|
||||
}
|
||||
}
|
||||
|
||||
/*********************************************************************************
|
||||
* Force all project compile classpaths to be resolved at configuration time.
|
||||
*********************************************************************************/
|
||||
allprojects {
|
||||
afterEvaluate {
|
||||
configurations.matching { it.name.endsWith("compileClasspath") }.all { cfg ->
|
||||
if (cfg.canBeResolved) {
|
||||
try {
|
||||
cfg.files // trigger resolution safely now
|
||||
} catch (ignored) { }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*********************************************************************************
|
||||
* Store :MarkdownSupport ClassPath to fix issues with Gradle 9.
|
||||
*********************************************************************************/
|
||||
ext.mdDeps = []
|
||||
|
||||
/*********************************************************************************
|
||||
* Imports
|
||||
* For these tasks to be available on all subprojects, this MUST be placed
|
||||
|
||||
Reference in New Issue
Block a user