Added single jar build to root project

This commit is contained in:
Sandy Brownlee 2022-09-09 12:20:49 +01:00
parent 11be265081
commit b3375e2050

9
build.gradle Normal file
View File

@ -0,0 +1,9 @@
apply plugin: 'java'
subprojects.each { subproject ->
evaluationDependsOn(subproject.path)
}
jar {
from subprojects.sourceSets.main.output
}