2022-10-15 16:27:33 -07:00
|
|
|
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
|
2022-10-15 16:27:33 -07:00
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
java {
|
|
|
|
srcDir '../luaformatter/src'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
test {
|
|
|
|
java {
|
|
|
|
srcDir '../luaformatter/test'
|
|
|
|
}
|
|
|
|
}
|
2024-01-30 07:24:45 -08:00
|
|
|
}
|