Skip to content

Instantly share code, notes, and snippets.

View nerro's full-sized avatar
💻
*-driven-development

nerro nerro

💻
*-driven-development
View GitHub Profile
@nerro
nerro / helper.gradle
Last active October 27, 2023 10:20
Gradle: task 'resolveDependencies' for CI
task resolveDependencies {
setDescription "Resolves all projects dependencies from the repository."
setGroup "Build Server"
doLast {
rootProject.allprojects { project ->
project.buildscript.configurations.forEach { configuration ->
if (configuration.canBeResolved) {
configuration.resolve()
}