From 7eb090f910fe7b8aff4e91e0f50b67ca442f739e Mon Sep 17 00:00:00 2001 From: Mihai Nita Date: Mon, 31 Mar 2025 13:19:40 -0700 Subject: [PATCH] ICU-23072 Support from JDK 11 up, drop support for JDK 8 --- .github/workflows/icu4j.yml | 4 +- .github/workflows/icu_common.yml | 2 +- .github/workflows/icu_merge_ci.yml | 62 +++--------- .github/workflows/release-icu4j-maven.yml | 2 +- icu4j/main/localespi/pom.xml | 110 +--------------------- icu4j/pom.xml | 68 +++++-------- icu4j/tools/build/pom.xml | 24 ----- icu4j/tools/taglets/pom.xml | 24 ----- 8 files changed, 43 insertions(+), 253 deletions(-) diff --git a/.github/workflows/icu4j.yml b/.github/workflows/icu4j.yml index 8086dc8bff6..04beeba64a0 100644 --- a/.github/workflows/icu4j.yml +++ b/.github/workflows/icu4j.yml @@ -60,7 +60,7 @@ jobs: - uses: actions/setup-java@v4 with: distribution: 'temurin' - java-version: '8' + java-version: '11' # Download all of the artifacts needed for the code and build plugins, but # exclude any needed by profiles depending on system artifacts - name: Download all artifacts @@ -75,7 +75,7 @@ jobs: strategy: fail-fast: false matrix: - java-version: [ '8', '11', '17', '21' ] + java-version: [ '11', '17', '21' ] runs-on: ubuntu-22.04 # Updated in BRS steps: - name: Checkout and setup diff --git a/.github/workflows/icu_common.yml b/.github/workflows/icu_common.yml index e8b548fbe7e..59b04895a1e 100644 --- a/.github/workflows/icu_common.yml +++ b/.github/workflows/icu_common.yml @@ -66,7 +66,7 @@ jobs: - uses: actions/setup-java@v4 with: distribution: 'temurin' - java-version: '8' + java-version: '11' # Download all of the artifacts needed for the code and build plugins, but # exclude any needed by profiles depending on system artifacts - name: Download all artifacts diff --git a/.github/workflows/icu_merge_ci.yml b/.github/workflows/icu_merge_ci.yml index 6e401b891e8..6e1e3bd72db 100644 --- a/.github/workflows/icu_merge_ci.yml +++ b/.github/workflows/icu_merge_ci.yml @@ -27,11 +27,16 @@ env: permissions: contents: read +# Using Java 11 because Java version not deemed significant for downloading artifacts, +# and is the lowest version we support, so the cached artifacts can be used by any other version. +uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 + with: + distribution: 'temurin' + java-version: '11' + jobs: # Initialize the Maven artifact cache - # Uses Java 8 because Java version not deemed significant for downloading - # artifacts # # This job is created according to the cache strategy of reuse from a single job: # https://github.com/actions/cache/blob/main/caching-strategies.md#make-cache-read-only--reuse-cache-from-centralized-job @@ -49,10 +54,6 @@ jobs: with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} - - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 - with: - distribution: 'temurin' - java-version: '8' # Download all of the artifacts needed for the code and build plugins - name: Download all artifacts run: | @@ -78,10 +79,6 @@ jobs: restore-keys: | ${{ runner.os }}-maven- lookup-only: true - - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 - with: - distribution: 'temurin' - java-version: '11' - name: ICU4J little-endian run: | cd icu4c/source; @@ -342,11 +339,6 @@ jobs: restore-keys: | ${{ runner.os }}-maven- lookup-only: true - - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 - with: - distribution: 'temurin' - java-version: '8' - - name: Build and run unicodesetperf test run: | cd icu4j; @@ -354,9 +346,8 @@ jobs: git status cd perf-tests; mkdir -p perf/results/j_unicodesetperf/${{ matrix.perf }}; - mvn dependency:copy-dependencies + mvn dependency:copy-dependencies java -cp ./target/*:./target/dependency/* com.ibm.icu.dev.test.perf.UnicodeSetPerf ${{ matrix.perf }} -a -t 2 -p 4 [:Lt:] | tee perf/results/j_unicodesetperf/${{ matrix.perf }}/output.txt - - name: Store performance test results uses: gregtatum/github-action-benchmark@d3f06f738e9612988d575db23fae5ca0008d3d12 with: @@ -400,20 +391,14 @@ jobs: restore-keys: | ${{ runner.os }}-maven- lookup-only: true - - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 - with: - distribution: 'temurin' - java-version: '8' - - name: Build and run ucharacterperf test run: | cd icu4j; mvn ${SHARED_MVN_ARGS} install -DskipITs -DskipTests; cd perf-tests; mkdir -p perf/results/j_ucharacterperf; - mvn dependency:copy-dependencies + mvn dependency:copy-dependencies java -cp ./target/*:./target/dependency/* com.ibm.icu.dev.test.perf.UCharacterPerf -a -t 2 -p 4 0 ffff | tee perf/results/j_ucharacterperf/output.txt - - name: Store performance test results uses: gregtatum/github-action-benchmark@d3f06f738e9612988d575db23fae5ca0008d3d12 with: @@ -460,11 +445,6 @@ jobs: restore-keys: | ${{ runner.os }}-maven- lookup-only: true - - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 - with: - distribution: 'temurin' - java-version: '8' - - name: Build and run decimalformatperf run: | cd icu4j; @@ -475,9 +455,8 @@ jobs: # tests over 180 secs. minimizes the possibility of push conflicts when storing # tests results in the data branch. sleep $(($RANDOM % 180)); - mvn dependency:copy-dependencies + mvn dependency:copy-dependencies java -cp ./target/*:./target/dependency/* com.ibm.icu.dev.test.perf.DecimalFormatPerformanceTest ${{ matrix.perf }} -a -t 2 -p 4 -L ${{ matrix.locale }} "#,###.##" "1.234,56" -r 1 | tee perf/results/j_decimalformatperf/${{ matrix.locale }}/${{ matrix.perf }}/output.txt - - name: Store performance test results uses: gregtatum/github-action-benchmark@d3f06f738e9612988d575db23fae5ca0008d3d12 with: @@ -525,11 +504,6 @@ jobs: restore-keys: | ${{ runner.os }}-maven- lookup-only: true - - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 - with: - distribution: 'temurin' - java-version: '8' - - name: Build and run normperf env: DATA_FILE_PATH: data/collation @@ -542,7 +516,7 @@ jobs: # tests over 180 secs. minimizes the possibility of push conflicts when storing # tests results in the data branch. sleep $(($RANDOM % 180)); - mvn dependency:copy-dependencies + mvn dependency:copy-dependencies java -cp ./target/*:./target/dependency/* com.ibm.icu.dev.test.perf.NormalizerPerformanceTest ${{ matrix.perf }} -a -t 2 -p 4 -f $DATA_FILE_PATH/${{ matrix.source_text }}.txt -e UTF-8 ${{ matrix.mode }} | tee perf/results/j_normperf/${{ matrix.source_text }}/${{ matrix.perf }}/output.txt cat perf/results/j_normperf/${{ matrix.source_text }}/${{ matrix.perf }}/output.txt @@ -660,11 +634,6 @@ jobs: restore-keys: | ${{ runner.os }}-maven- lookup-only: true - - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 - with: - distribution: 'temurin' - java-version: '8' - - name: Build and run converterperf env: DATA_FILE_PATH: data/conversion @@ -677,7 +646,7 @@ jobs: # tests over 180 secs. minimizes the possibility of push conflicts when storing # tests results in the data branch. sleep $(($RANDOM % 180)); - mvn dependency:copy-dependencies + mvn dependency:copy-dependencies java -cp ./target/*:./target/dependency/* com.ibm.icu.dev.test.perf.ConverterPerformanceTest ${{ matrix.perf }} -a -t 2 -p 4 -f $DATA_FILE_PATH/${{ matrix.source_text }}.txt -e UTF-8 -T ${{ matrix.test_enc }} | tee perf/results/j_converterperf/${{ matrix.source_text }}/${{ matrix.test_enc }}/${{ matrix.perf }}/output.txt - name: Store performance test results @@ -739,11 +708,6 @@ jobs: restore-keys: | ${{ runner.os }}-maven- lookup-only: true - - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 - with: - distribution: 'temurin' - java-version: '8' - - name: Extract identifying digit and parameter. run: | ddir='${{ matrix.parms }}'; @@ -759,7 +723,7 @@ jobs: # tests over 180 secs. minimizes the possibility of push conflicts when storing # tests results in the data branch. sleep $(($RANDOM % 180)); - mvn dependency:copy-dependencies + mvn dependency:copy-dependencies java -cp ./target/*:./target/dependency/* com.ibm.icu.dev.test.perf.DateFormatPerformanceTest ${{ matrix.perf }} -a -t 2 -p 4 -L ${{ matrix.locale }} ${{ env.PARM }} -r 1 | tee perf/results/j_dateformatperf/${{ matrix.locale }}/${{ matrix.perf }}/${{ env.DDIR }}/output.txt - name: Store performance test results diff --git a/.github/workflows/release-icu4j-maven.yml b/.github/workflows/release-icu4j-maven.yml index 33c6fa40e1d..b102ac8474a 100644 --- a/.github/workflows/release-icu4j-maven.yml +++ b/.github/workflows/release-icu4j-maven.yml @@ -55,7 +55,7 @@ jobs: - name: Set up JDK uses: actions/setup-java@v4.2.2 with: - java-version: '8' # The custom Taglets for javadoc (tools/build) are still Java 8. They need updating to use a different JDK version. + java-version: '11' distribution: 'temurin' server-id: icu4j-maven-repo # Value of the distributionManagement/repository/id field of the pom.xml server-username: MAVEN_USERNAME # env variable for username in deploy diff --git a/icu4j/main/localespi/pom.xml b/icu4j/main/localespi/pom.xml index f2a956f7fad..7bafb1d5858 100644 --- a/icu4j/main/localespi/pom.xml +++ b/icu4j/main/localespi/pom.xml @@ -108,45 +108,13 @@ **/*IT.java **/*ITCase.java - - - ${localespi-tests.jvm.args} - - - ${localespi-tests.locale-providers} + CLDR,COMPAT,SPI - @@ -167,82 +135,6 @@ - - - - localespi-tests-java8 - - (,8] - - - -Djava.ext.dirs="${java.io.tmpdir}/ext-test-jars" - - - - - - - maven-dependency-plugin - - - it-test-copy-localespi-extension-jars - integration-test - - copy - - - - - ${project.groupId} - icu4j - ${project.version} - ${project.packaging} - - - ${project.groupId} - icu4j-localespi - ${project.version} - ${project.packaging} - - - - ${java.io.tmpdir}/ext-test-jars - - - - - - - - - - - localespi-tests-java9 - - [9,) - - - - CLDR,COMPAT,SPI - - - with_javadoc diff --git a/icu4j/pom.xml b/icu4j/pom.xml index fbf4e94f64c..0b0c688755c 100644 --- a/icu4j/pom.xml +++ b/icu4j/pom.xml @@ -43,14 +43,15 @@ demos samples + tools/build tools/misc + tools/taglets perf-tests UTF-8 - 1.8 - 1.8 + 11 https://oss.sonatype.org ${maven-central-repo-url}/service/local/staging/deploy/maven2 @@ -198,14 +199,7 @@ maven-compiler-plugin - 3.13.0 - - - ${maven.compiler.source} - ${maven.compiler.target} - + 3.14.0 maven-surefire-plugin @@ -323,6 +317,9 @@ 3.6.3 + + [11,) + @@ -658,36 +655,10 @@ - - newer_jdk - - [9,) - - - tools/build - tools/taglets - - - - - maven-compiler-plugin - - 8 - - - - - - - - + errorprone @@ -695,11 +666,10 @@ org.apache.maven.plugins maven-compiler-plugin - ${maven.compiler.source} - ${maven.compiler.target} - UTF-8 - true + false + true + -XDcompilePolicy=simple -Xplugin:ErrorProne -XepAllErrorsAsWarnings + -Xmaxerrs + 10000 + -J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED + -J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED + -J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED diff --git a/icu4j/tools/build/pom.xml b/icu4j/tools/build/pom.xml index edee524870b..d9e8abb5800 100644 --- a/icu4j/tools/build/pom.xml +++ b/icu4j/tools/build/pom.xml @@ -14,28 +14,4 @@ tools_build - - 11 - 11 - - - - - newer_jdk - - [11,) - - - - - maven-compiler-plugin - - 11 - - - - - - - diff --git a/icu4j/tools/taglets/pom.xml b/icu4j/tools/taglets/pom.xml index 6c6ba9d591e..2af1bac99b4 100644 --- a/icu4j/tools/taglets/pom.xml +++ b/icu4j/tools/taglets/pom.xml @@ -14,28 +14,4 @@ tools_taglets - - 11 - 11 - - - - - newer_jdk - - [11,) - - - - - maven-compiler-plugin - - 11 - - - - - - -