Skip to content

Instantly share code, notes, and snippets.

View Oleg-Beloy's full-sized avatar
:electron:

Oleg Beloy Oleg-Beloy

:electron:
  • Pango
  • Ukraine, Portugal
View GitHub Profile
@Oleg-Beloy
Oleg-Beloy / build.gradle
Created October 30, 2020 11:23
resolveDependencies
task resolveDependencies {
description "Resolves all projects dependencies from the repository."
group "Build Server"
doLast {
rootProject.allprojects { project ->
project.buildscript.configurations.forEach { configuration ->
if (configuration.canBeResolved) {
configuration.resolve()
}