diff options
author | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2018-04-27 14:02:39 +0200 |
---|---|---|
committer | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2018-04-27 14:02:39 +0200 |
commit | f7855168a38fefe8e488348cbd212bbba581226a (patch) | |
tree | 1f34a9122dab0dabc7fdf5edc2169ebe2781f8e3 | |
parent | 4e029ecbf2e7a6e552b82699ea2e6ebb424e3b79 (diff) |
Fix potential ClassNotFound
Discovered with recent version of java 8 and 9, this dependency should
be added by default
Issue-ID: CLAMP-151
Change-Id: Ie6c94cff032d6e6d5bb1adeb9deb04371a74d89d
Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
-rw-r--r-- | pom.xml | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -195,6 +195,11 @@ <groupId>org.apache.camel</groupId> <artifactId>camel-servlet-starter</artifactId> </dependency> + <dependency> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + <version>2.3.0</version> + </dependency> <!-- Spring famework --> <dependency> <groupId>org.springframework.boot</groupId> |