mirror of
https://github.com/fr3ts0n/AndrOBD.git
synced 2026-06-02 10:34:37 -04:00
39 lines
795 B
Groovy
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'
|
|
}
|