Skip to content

Commit

Permalink
Fix inclusion of transitive dependency org.glassfish.jaxb.runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
Borewit committed Jan 7, 2025
1 parent 6cb0f03 commit 0062ddc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ dependencies {
// https://mvnrepository.com/artifact/commons-io/commons-io
implementation 'commons-io:commons-io:2.18.0'

implementation 'commons-io:commons-io:2.16.1'

// Testing: Used to load MIME-types from JSON
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.18.2'
Expand All @@ -64,6 +62,9 @@ extraJavaModuleInfo {
exports('com.dd.plist')
requires('java.xml')
}
module('com.rover12421.opensource:JFontChooser', 'say.swing.JFontChooser') {
exports 'say.swing'
}
}

task javadocJar(type: Jar) {
Expand Down Expand Up @@ -91,7 +92,7 @@ sourceSets {


group = 'io.github.borewit'
version = '4.1.0'
version = '4.1.1-SNAPSHOT'
description = 'Lizzy'
java.sourceCompatibility = JavaVersion.VERSION_1_9

Expand Down
1 change: 1 addition & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
requires jakarta.activation;
requires org.apache.commons.io;
requires jakarta.xml.bind;
requires org.glassfish.jaxb.runtime; // Add the JAXB RI implementation module
requires dd.plist;
requires com.fasterxml.jackson.annotation;
requires com.fasterxml.jackson.databind;
Expand Down

0 comments on commit 0062ddc

Please sign in to comment.