Merge remote-tracking branch 'origin/GT-3547-dragonmacher-patch-dir-fix'

This commit is contained in:
ghidorahrex
2020-02-24 13:47:12 -05:00
18 changed files with 277 additions and 530 deletions
+12 -3
View File
@@ -1,3 +1,12 @@
Drop jar files in this directory to apply patches to an installation of Ghidra. Any jar files
found in this directory will be placed at the front of the classpath, allowing them to override
any existing classes in any module.
This directory exits so that Ghidra releases can be patched, or overridden.
Classes or jar files placed in this directory will found and loaded
*before* the classes that exist in the release jar files. One exception
is that classes in the Utility module can not be patched in this way.
The jar files will be sorted by name before being prepended to the classpath
in order to have predictable class loading between Ghidra runs. This patch
directory will be the very first patch entry on the classpath such that any
individual classes will be found before classes in any of the patch jar files.
The class files in this directory must be in the standard java package
directory structure.