bundles fixes Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
diff --git a/bundles/apidocs/pom.xml b/bundles/apidocs/pom.xml index 539ca85..ade60fc 100644 --- a/bundles/apidocs/pom.xml +++ b/bundles/apidocs/pom.xml
@@ -35,6 +35,12 @@ <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId> <version>${project.version}</version> + <exclusions> + <exclusion> + <groupId>jakarta.activation</groupId> + <artifactId>jakarta.activation-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.glassfish.jersey.core</groupId> @@ -57,6 +63,12 @@ <groupId>org.glassfish.jersey.connectors</groupId> <artifactId>jersey-apache-connector</artifactId> <version>${project.version}</version> + <exclusions> + <exclusion> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.glassfish.jersey.connectors</groupId> @@ -67,6 +79,12 @@ <groupId>org.glassfish.jersey.connectors</groupId> <artifactId>jersey-grizzly-connector</artifactId> <version>${project.version}</version> + <exclusions> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.glassfish.jersey.connectors</groupId>
diff --git a/bundles/examples/pom.xml b/bundles/examples/pom.xml index 63b1e4e..c72f75a 100644 --- a/bundles/examples/pom.xml +++ b/bundles/examples/pom.xml
@@ -735,7 +735,7 @@ <id>make-assembly</id> <phase>package</phase> <goals> - <goal>attached</goal> + <goal>single</goal> </goals> </execution> </executions>
diff --git a/docs/pom.xml b/docs/pom.xml index 6af6619..1a4d379 100644 --- a/docs/pom.xml +++ b/docs/pom.xml
@@ -154,7 +154,7 @@ <id>make-assembly</id> <phase>package</phase> <goals> - <goal>attached</goal> + <goal>single</goal> </goals> </execution> </executions>