Update 2 files

- /build.gradle
- /.gitlab-ci.yml
This commit is contained in:
2025-11-13 01:06:46 +00:00
parent 54999c1160
commit 0ef1e52ee9
2 changed files with 2 additions and 2 deletions

View File

@@ -30,6 +30,6 @@ build: # This job runs in the build stage, which runs first.
- echo "Compiling the code..." - echo "Compiling the code..."
- java --version - java --version
- chmod +x ./gradlew - chmod +x ./gradlew
- ./gradlew build -Pprofile=prod - ./gradlew build -Pprofile=prod --refresh-dependencies
- ls - ls
- echo "Compile complete." - echo "Compile complete."

View File

@@ -11,7 +11,7 @@ description = 'Scheduler Service Backend API Server'
java { java {
toolchain { toolchain {
languageVersion = JavaLanguageVersion.of(21) languageVersion = JavaLanguageVersion.of(21)
vendor = JvmVendorSpec.ANY vendor = JvmVendorSpec.ADOPTOPENJDK
} }
} }