ghidra/gradle
2024-06-12 10:04:40 -04:00
..
debugger GP-4685: Fixing Gradle warnings 2024-06-12 10:04:40 -04:00
root GP-4685: Fixing Gradle warnings 2024-06-12 10:04:40 -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
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 Revert "GP-1782: Software Bill of Materials (SBOM)" 2022-03-23 12:33:02 -04:00
distributableGPLExtension.gradle GP-0: Ignoring .pydevproject files 2023-08-07 14:08:27 -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-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
javadoc.gradle GP-933 fixing gradle warnings to prepare for Gradle 8 2021-05-28 12:59:11 -04:00
javaProject.gradle GP-4685: Fixing Gradle warnings 2024-06-12 10:04:40 -04:00
javaTestProject.gradle GP-4685: Fixing Gradle warnings 2024-06-12 10:04:40 -04:00
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 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.