rusefi/java_console/luaformatter_module/build.gradle

18 lines
294 B
Groovy
Raw Normal View History

plugins {
id 'java'
}
2024-01-30 07:24:45 -08:00
// that git submodule uses non gradle folder structure so here we are hacking things
sourceSets {
main {
java {
srcDir '../luaformatter/src'
}
}
test {
java {
srcDir '../luaformatter/test'
}
}
2024-01-30 07:24:45 -08:00
}