Skip to content

Commit 4626e9b

Browse files
committed
JAXB dependency is added
For some reason maven could not build the project since it could not found JAXB classes. It may be because of the new JDK.
1 parent 353cd78 commit 4626e9b

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

jpa-specification/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
<hamcrest-version>1.3</hamcrest-version>
1919
<mapstruct.version>1.2.0.Final</mapstruct.version>
2020
<hibernate.jpamodelgen-version>5.3.2.Final</hibernate.jpamodelgen-version>
21+
<jaxb.version>2.3.0</jaxb.version>
2122

2223
<maven.plugin.compiler.version>3.7.0</maven.plugin.compiler.version>
2324
<maven.plugin.build-helper.version>3.0.0</maven.plugin.build-helper.version>
@@ -113,6 +114,12 @@
113114
<artifactId>jackson-datatype-jsr310</artifactId>
114115
</dependency>
115116

117+
<dependency>
118+
<groupId>javax.xml.bind</groupId>
119+
<artifactId>jaxb-api</artifactId>
120+
<version>${jaxb.version}</version>
121+
</dependency>
122+
116123
</dependencies>
117124

118125
<build>

0 commit comments

Comments
 (0)