Exclude freemarker from hazelcast

Hazelcast introduced a regression in their dependency management as of
3.5 which brings freemarker. This has unfortunate side effect in a Spring
Boot application since the freemarker auto-configuration kicks in for no
apparent reason when hazelcast is used.

An exclusion has been applied until the issue is fixed in hazelcast.

Closes gh-3418
This commit is contained in:
Stephane Nicoll 2015-07-10 16:37:50 +02:00
parent 8ff8afec7c
commit 1348acf3e3
1 changed files with 6 additions and 0 deletions

View File

@ -564,6 +564,12 @@
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast</artifactId>
<version>${hazelcast.version}</version>
<exclusions> <!-- https://github.com/hazelcast/hazelcast/issues/5678 -->
<exclusion>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.hazelcast</groupId>