Files
AndrOBD/library/build.gradle
Erwin Scheuch-Heilig de625c0d76 Update gradle / SDK build settings
- revert to JDK 17
2026-02-27 19:43:40 +01:00

39 lines
795 B
Groovy

apply plugin: 'java'
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
compileJava {
options.incremental = true
}
sourceSets {
main {
java {
exclude(
'com/fr3ts0n/common/res',
'com/fr3ts0n/pvs/gui',
'com/fr3ts0n/prot/gui',
'com/fr3ts0n/ecu/gui',
'com/fr3ts0n/ecu/prot/vag',
)
}
resources {
srcDirs("src/main/java")
include('com/fr3ts0n/ecu/prot/obd/res/*')
}
}
}
test {
useJUnitPlatform()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:6.0.3'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}