fixed dependency issues around packaging

This commit is contained in:
2021-10-29 10:20:25 -04:00
parent 1621cd2d12
commit bc1ced6fef

40
pom.xml
View File

@@ -39,27 +39,25 @@
<groupId>com.fasterxml.jackson.jaxrs</groupId> <groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId> <artifactId>jackson-jaxrs-json-provider</artifactId>
<version>${jackson.version}</version> <version>${jackson.version}</version>
</dependency> <exclusions>
<dependency> <!-- Provided by ACS -->
<groupId>com.fasterxml.jackson.module</groupId> <exclusion>
<artifactId>jackson-module-jaxb-annotations</artifactId> <groupId>com.fasterxml.jackson.module</groupId>
</dependency> <artifactId>jackson-module-jaxb-annotations</artifactId>
</exclusion>
<!-- ACS Provided Libraries --> <exclusion>
<dependency> <groupId>com.fasterxml.jackson.core</groupId>
<groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId>
<artifactId>jackson-core</artifactId> </exclusion>
<scope>provided</scope> <exclusion>
</dependency> <groupId>com.fasterxml.jackson.core</groupId>
<dependency> <artifactId>jackson-databind</artifactId>
<groupId>com.fasterxml.jackson.core</groupId> </exclusion>
<artifactId>jackson-databind</artifactId> <exclusion>
<scope>provided</scope> <groupId>com.fasterxml.jackson.core</groupId>
</dependency> <artifactId>jackson-annotations</artifactId>
<dependency> </exclusion>
<groupId>com.fasterxml.jackson.core</groupId> </exclusions>
<artifactId>jackson-annotations</artifactId>
<scope>provided</scope>
</dependency> </dependency>
</dependencies> </dependencies>