This is an automated email from the ASF dual-hosted git repository.

jark pushed a commit to branch ci-1197
in repository https://gitbox.apache.org/repos/asf/fluss.git

commit 85bdd3fb0089255526b45c6d2b6d3cf28add2f95
Author: Jark Wu <[email protected]>
AuthorDate: Sun Aug 10 16:48:00 2025 +0800

    fix java8
---
 .github/workflows/ci-template.yaml | 1 +
 pom.xml                            | 6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/ci-template.yaml 
b/.github/workflows/ci-template.yaml
index 471f837ca..f4e89e3c4 100644
--- a/.github/workflows/ci-template.yaml
+++ b/.github/workflows/ci-template.yaml
@@ -31,6 +31,7 @@ on:
         type: string
         default: ""
 jobs:
+  name: "${{ matrix.module }} (Java ${{ inputs.java-version }})"
   build-and-test:
     runs-on: self-hosted
     steps:
diff --git a/pom.xml b/pom.xml
index e7febb192..6fe3bbabf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -428,7 +428,7 @@
         <profile>
             <id>java8</id>
             <properties>
-                <target.java.version>8</target.java.version>
+                <target.java.version>1.8</target.java.version>
             </properties>
             <build>
                 <plugins>
@@ -436,8 +436,8 @@
                         <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-compiler-plugin</artifactId>
                         <configuration>
-                            <source>8</source>
-                            <target>8</target>
+                            <source>${target.java.version}</source>
+                            <target>${target.java.version}</target>
                             
<useIncrementalCompilation>false</useIncrementalCompilation>
                             <compilerArgs >
                                 <!-- Prevents recompilation due to missing 
package-info.class, see MCOMPILER-205 -->

Reply via email to