xpipe/gradle/gradle_scripts
2024-04-22 11:56:59 +00:00
..
extension.gradle Merge branch vnc into master 2024-04-13 16:23:09 +00:00
java.gradle Merge branch 1.7.3-fixes into master 2023-11-15 03:25:18 +00:00
javafx.gradle Merge branch prefs into master 2024-02-28 07:36:31 +00:00
jna.gradle Rework jna handling and add sid check 2024-03-25 08:15:31 +00:00
junit.gradle Merge branch prefs into master 2024-02-28 07:36:31 +00:00
local_junit_suite.gradle Merge branch transfer-performance into master 2024-03-04 17:23:30 +00:00
lombok.gradle Merge branch prefs into master 2024-02-28 07:36:31 +00:00
markdowngenerator-1.3.1.1.jar Rework insights popup 2023-12-22 23:31:48 +00:00
publish-base.gradle Merge branch 'gpg' 2024-03-21 04:48:05 +00:00
README.md Merge branch prefs into master 2024-02-28 07:36:31 +00:00
remote_junit_suite.gradle Merge branch prefs into master 2024-02-28 07:36:31 +00:00
vernacular-1.16.jar Various fixes 2024-04-22 11:56:59 +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.