This is an automated email from the ASF dual-hosted git repository.
roryqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git
The following commit(s) were added to refs/heads/master by this push:
new 1c999725 [#1066] fix: The Jetty server fails to start when compiled
with JDK 8 but runtime version is JDK 11. (#1067)
1c999725 is described below
commit 1c999725665fb42483d524c54a858976b6b5b8ff
Author: SevenAddSix <[email protected]>
AuthorDate: Sat Aug 5 15:28:58 2023 +0800
[#1066] fix: The Jetty server fails to start when compiled with JDK 8 but
runtime version is JDK 11. (#1067)
### What changes were proposed in this pull request?
Add the JDK 11 removed jar package.
### Why are the changes needed?
Fix: #1066
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Tested in our cluster.
Co-authored-by: [email protected]
---
pom.xml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/pom.xml b/pom.xml
index 6188ac69..4dfe1c61 100644
--- a/pom.xml
+++ b/pom.xml
@@ -124,6 +124,12 @@
</modules>
<dependencies>
+ <dependency>
+ <groupId>javax.activation</groupId>
+ <artifactId>activation</artifactId>
+ <version>1.1.1</version>
+ </dependency>
+
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-reload4j</artifactId>