blob: 516d5b0030eb994f760c88df3f5f12499c7967dc [file]
// Copyright (c) 2023, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
plugins {
`kotlin-dsl`
id("dependencies-plugin")
}
kotlin { explicitApi() }
tasks {
val downloadDeps by
registering(DownloadAllDependenciesTask::class) {
this.setDependencies(getRoot(), allPublicDependencies())
}
val downloadTestDeps by
registering(DownloadAllDependenciesTask::class) {
this.setDependencies(getRoot(), allPublicTestDependencies())
}
val downloadDepsInternal by
registering(DownloadAllDependenciesTask::class) {
this.setDependencies(getRoot(), allInternalDependencies())
}
val downloadTestDepsInternal by
registering(DownloadAllDependenciesTask::class) {
this.setDependencies(getRoot(), allInternalTestDependencies())
}
}