mirror of
https://github.com/fr3ts0n/AndrOBD.git
synced 2025-12-23 22:28:06 -05:00
38 lines
804 B
Groovy
38 lines
804 B
Groovy
apply plugin: 'java'
|
|
|
|
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-api:5.11.3'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.3'
|
|
}
|
|
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
} |