mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Gradle: Enforce same JDK everywhere
This commit is contained in:
parent
65667cf4e7
commit
990ed8b1e6
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@ -13,7 +13,7 @@ jobs:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macOS-latest, windows-latest]
|
||||
java: [ '11', '11.0.3', '15', '15.0.5']
|
||||
java: ['11']
|
||||
name: Test Java ${{ matrix.Java }}, ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4.0.0
|
||||
|
@ -8,8 +8,13 @@ repositories {
|
||||
maven { url "https://jitpack.io" }
|
||||
}
|
||||
|
||||
sourceCompatibility = JavaVersion.VERSION_11
|
||||
targetCompatibility = JavaVersion.VERSION_11
|
||||
java {
|
||||
toolchain {
|
||||
languageVersion = JavaLanguageVersion.of(11)
|
||||
vendor = JvmVendorSpec.AZUL
|
||||
implementation = JvmImplementation.VENDOR_SPECIFIC
|
||||
}
|
||||
}
|
||||
|
||||
tasks.withType(JavaCompile) {
|
||||
options.encoding = 'UTF-8'
|
||||
|
Loading…
Reference in New Issue
Block a user