ghidra/gradle
2020-08-26 13:29:22 -04:00
..
root added git commit hashes to application.properties for all builds 2020-08-26 11:06:34 -04:00
support Merge remote-tracking branch 'origin/GP-67_adamopolous_add-git-hash-to-app-properties--SQUASHED' 2020-08-26 13:29:22 -04:00
certification.manifest moved config specs to external resource file 2019-09-03 12:33:25 -04:00
distributableGhidraExtension.gradle Major refactoring of the gradle build system. 2019-04-23 15:20:26 -04:00
distributableGhidraModule.gradle Fixing build issues. 2019-04-26 18:17:11 -04:00
distributableGPLExtension.gradle Added extensions GnuDisassembler and SleighDevTools 2019-06-25 09:40:15 -04:00
distributableGPLModule.gradle Corrected GPL build issues 2019-06-13 14:06:37 -04:00
externalGhidraExtension.gradle Major refactoring of the gradle build system. 2019-04-23 15:20:26 -04:00
helpProject.gradle added directive to exclude duplicate files from help distro 2020-08-10 10:50:59 -04:00
jacocoProject.gradle added gradle dependencies for jacoco tasks 2019-11-15 09:54:34 -05:00
javaProject.gradle GT-3127: Gradle 5.6 support. 2019-09-03 13:51:30 -04:00
javaTestProject.gradle added Suite restriction to test tasks 2020-02-24 15:37:54 -05:00
nativeProject.gradle Major refactoring of the gradle build system. 2019-04-23 15:20:26 -04:00
processorProject.gradle Merge remote-tracking branch 'origin/patch' 2019-11-26 12:37:20 -05:00
README.txt Major refactoring of the gradle build system. 2019-04-23 15:20:26 -04:00

This folder contains the gradle scripts for the build system.  The gradle files at this level are
intended to be included by individual gradle project's build.gradle files. They add support for 
specific capabilities and are described below.  There are also two sub-folders.  The sub-folder 
"root" contains gradle scripts that are applied only to the root project's build.gradle file and 
are just a way to organize and break up the root project's build code.  The other sub-folder "support"
contains gradle scripts applied from other gradle scripts, mainly to avoid duplication of code. 

The following gradle scripts can be applied to a project's build.gradle file to add support for various capabilities.

javaProject.gradle - apply if the project contains java code.
nativeProject.gradle - apply if the project contains native code.
processorProject.gradle - apply if the project contains processor language specification.
helpProject.gradle - apply if the project contains files for the Ghidra help system.
javaTestProject.gradle - apply if the project contains unit tests.
jacocoProject.gradle - apply to the project to include it in when running the Jacoco task.

The following scripts can be included if the project is to be included in the build process. Only 
one of these scripts should be applied to a project.

distributableGhidraModule.gradle - apply if the Ghidra module should be included in the distribution build.
distributableGhidraExtension.gradle - apply if the Ghidra extension should be included in the distribution build.
externalGhidraExtension.gradle - apply if the Ghidra extension should be built external to the distribution build.