Browse Source

Avoid duplication of packages in sync container

wip/gradle-reposilite
Sindre Stephansen 2 years ago
parent
commit
ea64e50266
Signed by: sindre <sindre@sindrestephansen.com> GPG Key ID: B06FC67D17A46ADE
1 changed files with 2 additions and 7 deletions
  1. +2
    -7
      sync/generate-gradle.py

+ 2
- 7
sync/generate-gradle.py View File

@@ -371,13 +371,8 @@ dependencies {

tasks.register("downloadDependencies") {
doLast {
deps.forEach { (conf, dep) ->
conf.files.forEach { file ->
copy {
from(file)
into("data/")
}
}
deps.forEach { (conf, _) ->
conf.files
}
}
}


Loading…
Cancel
Save