This is an automated email from the ASF dual-hosted git repository.
krisden pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/knox.git
The following commit(s) were added to refs/heads/master by this push:
new 7879cef KNOX-2397 knox failed to start with error
"java.lang.NoSuchMethodError:
org.eclipse.persistence.internal.oxm.mappings.Field.setNestedArray(Z)V" (#357)
7879cef is described below
commit 7879cef08e8c0806e53017e98de801d17d4ba44a
Author: zhangbutao <[email protected]>
AuthorDate: Wed Jul 29 22:45:15 2020 +0800
KNOX-2397 knox failed to start with error "java.lang.NoSuchMethodError:
org.eclipse.persistence.internal.oxm.mappings.Field.setNestedArray(Z)V" (#357)
Co-authored-by: zhangbutao <[email protected]>
---
pom.xml | 23 ++++++++++++++++++++++-
1 file changed, 22 insertions(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index d695d90..e1cf327 100644
--- a/pom.xml
+++ b/pom.xml
@@ -189,6 +189,7 @@
<eclipselink.version>2.7.6</eclipselink.version>
<ehcache.version>2.6.11</ehcache.version>
<exec-maven-plugin.version>1.6.0</exec-maven-plugin.version>
+ <fastinfoset.version>1.2.18</fastinfoset.version>
<findsecbugs-plugin.version>1.10.1</findsecbugs-plugin.version>
<forbiddenapis.version>2.7</forbiddenapis.version>
<frontend-maven-plugin.version>1.9.1</frontend-maven-plugin.version>
@@ -212,8 +213,9 @@
<javax.ws.rs-api.version>2.0</javax.ws.rs-api.version>
<javax.websocket-api.version>1.1</javax.websocket-api.version>
<jaxb.version>2.3.0</jaxb.version>
- <jaxws-ri.version>2.3.2</jaxws-ri.version>
+ <jaxws-ri.version>2.3.3</jaxws-ri.version>
<jakarta.xml.bind.version>2.3.2</jakarta.xml.bind.version>
+ <jakarta.activation.version>1.2.2</jakarta.activation.version>
<java-support.version>7.5.1</java-support.version>
<jericho-html.version>3.4</jericho-html.version>
<jersey.version>2.6</jersey.version>
@@ -251,6 +253,7 @@
<spotbugs-maven-plugin.version>4.0.0</spotbugs-maven-plugin.version>
<spring.version>5.2.5.RELEASE</spring.version>
<spring-vault.version>2.2.2.RELEASE</spring-vault.version>
+ <stax-ex.version>1.8.3</stax-ex.version>
<stax2-api.version>4.2</stax2-api.version>
<taglibs-standard.version>1.2.5</taglibs-standard.version>
<testcontainers.version>1.13.0</testcontainers.version>
@@ -1330,6 +1333,24 @@
</dependency>
<dependency>
+ <groupId>com.sun.activation</groupId>
+ <artifactId>jakarta.activation</artifactId>
+ <version>${jakarta.activation.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jvnet.staxex</groupId>
+ <artifactId>stax-ex</artifactId>
+ <version>${stax-ex.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>com.sun.xml.fastinfoset</groupId>
+ <artifactId>FastInfoset</artifactId>
+ <version>${fastinfoset.version}</version>
+ </dependency>
+
+ <dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>eclipselink</artifactId>
<version>${eclipselink.version}</version>