Use conventions instead of cross-project configuration

gradle userguide suggests to avoid allprojects/subprojects and use conventions instead

https://docs.gradle.org/current/userguide/sharing_build_logic_between_subprojects.html#sec:convention_plugins_vs_cross_configuration
This commit is contained in:
Manuel Fuhr 2024-04-05 23:11:58 +02:00
parent b8929ab414
commit 5d4065d141
15 changed files with 80 additions and 70 deletions

View file

@ -1,7 +1,3 @@
plugins {
id 'java-library'
}
dependencies {
testImplementation('junit:junit:4.13.1')
id 'brouter.library-conventions'
}