2024-01-12 21:59:35 -08:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2024-01-14 05:47:51 -08:00
|
|
|
id 'com.github.johnrengelman.shadow' version "${shadowVersion}"
|
2024-01-12 21:59:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation libs.snakeyaml
|
|
|
|
testImplementation libs.junit
|
2024-02-09 18:25:39 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
manifest {
|
|
|
|
attributes(
|
|
|
|
'Main-Class': 'com.rusefi.can.Launcher'
|
|
|
|
)
|
|
|
|
}
|
2024-01-12 21:59:35 -08:00
|
|
|
}
|