Skip to content

Commit

Permalink
build: fix JAXB Runtime version 2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
manticore-projects committed May 8, 2023
1 parent ff5072b commit e362091
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ If you are using maven you can use this library by adding the following report t
<docletArtifact>
<groupId>com.manticore-projects.tools</groupId>
<artifactId>xml-doclet</artifactId>
<version>1.1.2</version>
<version>1.1.3</version>
</docletArtifact>
</configuration>
</execution>
Expand Down
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@ dependencies {
api 'org.slf4j:slf4j-api:+'
api 'javax.xml.bind:jaxb-api:2.+'

// We need to export this as API explicitly
// We need to export this as API explicitly and fix the Versions
// or else the Doclet will silently(!) not generate the output
api 'org.glassfish.jaxb:jaxb-runtime:2.+'
api 'org.glassfish.jaxb:jaxb-runtime:2.3.2'
api 'javax.activation:javax.activation-api:1.2.0'

jaxb2 'org.glassfish.jaxb:jaxb-runtime:2.+'
jaxb2 'org.glassfish.jaxb:jaxb-runtime:2.3.2'
jaxb2 'javax.activation:javax.activation-api:1.2.0'
testImplementation 'org.slf4j:slf4j-simple:+'
testImplementation 'junit:junit:+'
Expand Down

0 comments on commit e362091

Please sign in to comment.