xpipe-mirror/gradle/gradle_scripts
2024-02-13 13:45:11 +00:00
..
annotation-indexer-1.14.jar Merge main repository 2023-01-27 02:34:46 +00:00
extension.gradle Gradle fixes to fix build [stage] 2024-02-13 13:45:11 +00:00
java.gradle Merge branch 1.7.3-fixes into master 2023-11-15 03:25:18 +00:00
javafx.gradle Squash branch commits 2024-02-13 12:10:20 +00:00
junit.gradle Squash branch commits 2024-02-13 12:10:20 +00:00
local_junit_suite.gradle Gradle fixes to fix build [stage] 2024-02-13 13:45:11 +00:00
lombok.gradle Squash branch commits 2024-02-13 12:10:20 +00:00
markdowngenerator-1.3.1.1.jar Rework insights popup 2023-12-22 23:31:48 +00:00
publish-base.gradle Try to improve release 2023-02-01 10:05:26 +00:00
README.md Squash branch commits 2024-02-13 12:10:20 +00:00
remote_junit_suite.gradle Gradle fixes to fix build [stage] 2024-02-13 13:45:11 +00:00

Gradle Scripts

This directory contains helper scripts and Java module generation rules for dependencies used by various XPipe gradle projects. It also contains various other types of shared build script components that are useful.

As the jlink tool effectively requires proper modules as inputs but many established java libraries did not add proper support yet, using an approach like this is required. The modules are generated with the help of extra-java-module-info. The generated module-info.java file contains the necessary declarations to make a library work. While gradle already has a similar system to better share dependencies, this system is lacking several features. For one, it can't pass any other customizations to the build that are required by the dependencies, e.g. compiler parameters or annotation processors.