Skip to content

Commit

Permalink
HHH-13128 Add missing jaxb-runtime dependency to metamodel generator
Browse files Browse the repository at this point in the history
It's necessary for JDK 11 and we missed it when we added the
jaxb-runtime dependency to hibernate-core.
  • Loading branch information
gsmet committed Nov 29, 2018
1 parent d48307d commit 190dedc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tooling/metamodel-generator/hibernate-jpamodelgen.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ ext {
}

dependencies {
compile( libraries.jaxb_api )

// JAXB
compile( libraries.jaxb_api )
compile( libraries.jaxb_runtime )
xjc( libraries.jaxb_runtime )
xjc( libraries.jaxb_xjc )
xjc( libraries.jaxb2_basics )
Expand Down

0 comments on commit 190dedc

Please sign in to comment.