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 8b4df4517e6b1fc8a86b528702324b41394c2512
Author: Jark Wu <[email protected]>
AuthorDate: Sun Aug 10 16:48:00 2025 +0800

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

diff --git a/.github/workflows/ci-template.yaml 
b/.github/workflows/ci-template.yaml
index 471f837ca..87a06d8e3 100644
--- a/.github/workflows/ci-template.yaml
+++ b/.github/workflows/ci-template.yaml
@@ -31,7 +31,7 @@ on:
         type: string
         default: ""
 jobs:
-  build-and-test:
+  test:
     runs-on: self-hosted
     steps:
       - name: Checkout code
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