Skip to content

Files

Latest commit

8520cce · Jan 30, 2024

History

History
This branch is 2701 commits behind NationalSecurityAgency/ghidra:master.

gradle

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jan 5, 2024
Jan 30, 2024
Jan 12, 2024
Apr 23, 2019
Mar 17, 2021
Aug 7, 2023
Mar 17, 2021
Mar 17, 2021
Mar 23, 2022
Mar 17, 2021
Jun 6, 2023
Jan 30, 2024
Feb 23, 2023
Jun 22, 2022
May 28, 2021
Apr 27, 2023
Dec 22, 2023
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.