Skip to content

Commit

Permalink
Adjust the jaxb references to properly work for utiLITI
Browse files Browse the repository at this point in the history
It seems like newer versions of the javax.xml.bind:jaxb-api library works (also see: https://www.eclipse.org/forums/index.php/t/1096601/)
So, updating it made the module properly available for the jar.

Issue #162
  • Loading branch information
steffen-wilke committed Mar 11, 2019
1 parent c753e27 commit efcd2a0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {

plugins {
id 'com.stehno.natives' version '0.3.1'
id 'org.sonarqube' version '2.6.2'
id 'org.sonarqube' version '2.7'
}

natives {
Expand Down Expand Up @@ -49,11 +49,11 @@ dependencies {
compile 'com.code-disaster.steamworks4j:steamworks4j:1.8.0'

// JAXB modules for JDK 9 or higher
compile 'javax.xml.bind:jaxb-api:2.3.0'
compile 'com.sun.xml.bind:jaxb-core:2.3.0'
compile 'com.sun.xml.bind:jaxb-impl:2.3.0'
compile 'javax.activation:activation:1.1.1'
compile 'javax.activation:javax.activation-api:1.2.0'
compile 'javax.xml.bind:jaxb-api:2.4.0-b180830.0359'
compile 'com.sun.xml.bind:jaxb-core:2.3.0.1'
compile 'com.sun.xml.bind:jaxb-impl:2.3.2'

testCompile 'org.junit.jupiter:junit-jupiter-api:5.4.+'
testCompile 'org.junit.jupiter:junit-jupiter-params:5.4.+'
testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.4.+'
Expand Down

0 comments on commit efcd2a0

Please sign in to comment.