Lars Kaulen
12/05/2022, 9:54 AMsettings.gradle.allprojects { project -> project.version = developmentVersion }
, is this good practice in this context? And if not, what would be the correct way to apply the version for all projects?
2. The GrgitService
is registered with spec.maxParallelUsages.set(1)
. In the documentation it is mentioned, that "the build service must be registered with the using tasks via Task.usesService(Provider<? extends BuildService<?>>)". But in this case the build service isn't used within a task, but within the plugin directly, is there anything to do in this case for the spec.maxParallelUsages
to take effect? Or is it even useful conceptually?