ghidra/gradle
ghidra1 26fe4d63a7 GP-4570 Moved python3 search to root project 2024-05-01 09:56:08 -04:00
..
debugger GP-4570 Moved python3 search to root project 2024-05-01 09:56:08 -04:00
root Merge remote-tracking branch 'origin/patch' 2024-04-04 18:57:04 -04:00
support GP-4489: Add psutil and protobuf to downloads, dist. Build py packages for dist. 2024-04-26 23:34:30 -04:00
README.txt
certification.manifest
distributableGPLExtension.gradle GP-0: Ignoring .pydevproject files 2023-08-07 14:08:27 -04:00
distributableGPLModule.gradle
distributableGhidraExtension.gradle
distributableGhidraModule.gradle Revert "GP-1782: Software Bill of Materials (SBOM)" 2022-03-23 12:33:02 -04:00
externalGhidraExtension.gradle
helpProject.gradle GP-3430 - Updated the gradle buildHelp task to better handle its inputs up-do-date state 2023-06-06 15:25:25 -04:00
jacocoProject.gradle GP-4262: Upgrading jacoco to 0.8.11 2024-01-30 10:13:21 -05:00
javaProject.gradle GP-3130: Eclipse now recognizes test source folders 2023-02-23 10:08:17 -05:00
javaTestProject.gradle GP-0: Removing -noverify JVM argument from testing for JDK 17 support 2022-06-22 01:12:22 -04:00
javadoc.gradle
nativeProject.gradle GP-0: Adding a cleanNatives Gradle task 2023-04-27 07:53:20 -04:00
processorProject.gradle GP-4164: Improving guava-related build issue fix 2023-12-22 09:34:08 -05:00

README.txt

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.