From 40e4c36b4ab2cdb85a992dabc7914c935ec6b4a0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 8 Jun 2026 10:03:07 +0000 Subject: [PATCH 1/2] Initial plan From 227dab6f3ca496813f0e491935739046947f8e9a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 8 Jun 2026 10:07:05 +0000 Subject: [PATCH 2/2] ci: replace Ant build step with Gradle assemble --- .github/workflows/ant.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ant.yml b/.github/workflows/ant.yml index 06fc807..4cf0b1d 100644 --- a/.github/workflows/ant.yml +++ b/.github/workflows/ant.yml @@ -1,6 +1,3 @@ -# This workflow will build a Java project with Ant -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-ant - name: Java CI on: @@ -16,10 +13,12 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up JDK 11 + - name: Set up JDK 17 uses: actions/setup-java@v4 with: - java-version: '11' + java-version: '17' distribution: 'temurin' - - name: Build with Ant - run: ant -noinput -buildfile build.xml + - name: Build with Gradle + run: | + chmod +x ./gradlew + ./gradlew --no-daemon assembleDebug