Skip to content

Commit b6451f1

Browse files
committed
fix git modules requires and uses
1 parent 2fba93d commit b6451f1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build-logic/src/main/kotlin/org.jabref.gradle.base.dependency-rules.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,11 @@ extraJavaModuleInfo {
236236
}
237237
module("org.apache.pdfbox:pdfbox-io", "org.apache.pdfbox.io")
238238
module("org.apache.velocity:velocity-engine-core", "velocity.engine.core")
239-
module("org.eclipse.jgit:org.eclipse.jgit", "org.eclipse.jgit")
239+
module("org.eclipse.jgit:org.eclipse.jgit", "org.eclipse.jgit") {
240+
exportAllPackages()
241+
requires("org.slf4j")
242+
uses("org.eclipse.jgit.lib.SignerFactory")
243+
}
240244
module("org.fxmisc.undo:undofx", "org.fxmisc.undo")
241245
module("org.fxmisc.wellbehaved:wellbehavedfx", "wellbehavedfx") {
242246
exportAllPackages()

0 commit comments

Comments
 (0)