Skip to content

Commit 902fab7

Browse files
turboFeixxubaiczy006zhoujinsong
authored
[AMORO-3531] Drop support for java8 (#3899)
drop support jdk8 Co-authored-by: Xu Bai <xuba@apache.org> Co-authored-by: ConradJam <jam.gzczy@gmail.com> Co-authored-by: ZhouJinsong <zhoujinsong0505@163.com>
1 parent 39e2103 commit 902fab7

File tree

6 files changed

+5
-12
lines changed

6 files changed

+5
-12
lines changed

.github/workflows/core-hadoop2-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ubuntu-latest
3838
strategy:
3939
matrix:
40-
jdk: [ '8', '11' ]
40+
jdk: [ '11' ]
4141
name: Build Amoro with JDK ${{ matrix.jdk }}
4242
steps:
4343
- uses: actions/checkout@v3

.github/workflows/core-hadoop3-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ubuntu-latest
3838
strategy:
3939
matrix:
40-
jdk: [ '8', '11' ]
40+
jdk: [ '11' ]
4141
spark: [ '3.3', '3.5' ]
4242
name: Build Amoro with JDK ${{ matrix.jdk }} Spark-${{ matrix.spark }}
4343
steps:

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ for reference.
9292
The following guide describes how to import the Amoro project into IntelliJ IDEA and deploy it.
9393

9494
### Requirements
95-
+ Java Version: Java 8 or Java 11 is required.
95+
+ Java Version: Java 11 is required.
9696

9797
#### Required plugins
9898
1. Go to `Settings``Plugins` in IntelliJ IDEA.

docker/optimizer-flink/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
ARG FLINK_VERSION=1.20.0-java8
17+
ARG FLINK_VERSION=1.20.0-java11
1818

1919
FROM flink:${FLINK_VERSION}
2020

docs/admin-guides/deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ You can choose to download the stable release package from [download page](../..
3030

3131
## System requirements
3232

33-
- Java 8 is required.
33+
- Java 11 is required.
3434
- Optional: A RDBMS (PostgreSQL 14.x or higher, MySQL 5.5 or higher)
3535
- Optional: ZooKeeper 3.4.x or higher
3636

pom.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1842,13 +1842,6 @@
18421842
</properties>
18431843
</profile>
18441844

1845-
<profile>
1846-
<id>java8</id>
1847-
<properties>
1848-
<java.target.version>8</java.target.version>
1849-
<java.source.version>8</java.source.version>
1850-
</properties>
1851-
</profile>
18521845
<profile>
18531846
<id>java11</id>
18541847
<activation>

0 commit comments

Comments
 (0)