excluded jackson which is provided by wildfly automatically

This commit is contained in:
2019-06-10 14:45:28 +02:00
parent 7a380dc214
commit e9dede69cb

View File

@ -33,6 +33,20 @@ limitations under the License.
<dependency>
<groupId>com.inversoft</groupId>
<artifactId>prime-jwt</artifactId>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>javax</groupId>