ghidra/gradle
2021-09-15 13:55:20 -04:00
..
root GP-1296 Eliminated use of sun.security package and refactored ApplicationKeyManagerUtils 2021-09-15 13:55:20 -04:00
support GP-1106: Platform naming convention now supports different 2021-08-17 13:41:47 -04:00
certification.manifest Updated certification headers 2021-03-17 18:22:50 -04:00
distributableGhidraExtension.gradle Updated certification headers 2021-03-17 18:22:50 -04:00
distributableGhidraModule.gradle GP-1106: Platform naming convention now supports different 2021-08-17 13:41:47 -04:00
distributableGPLExtension.gradle Updated certification headers 2021-03-17 18:22:50 -04:00
distributableGPLModule.gradle Updated certification headers 2021-03-17 18:22:50 -04:00
externalGhidraExtension.gradle Updated certification headers 2021-03-17 18:22:50 -04:00
helpProject.gradle GP-849: Gradle 7 support 2021-05-12 13:45:16 -04:00
jacocoProject.gradle Updated certification headers 2021-03-17 18:22:50 -04:00
javadoc.gradle GP-933 fixing gradle warnings to prepare for Gradle 8 2021-05-28 12:59:11 -04:00
javaProject.gradle GP-849: Gradle 7 support 2021-05-12 13:45:16 -04:00
javaTestProject.gradle gradle test option tweaks 2021-04-05 12:03:51 -04:00
nativeProject.gradle Updated certification headers 2021-03-17 18:22:50 -04:00
processorProject.gradle Updated certification headers 2021-03-17 18:22:50 -04: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.