1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Default COMPILE scope.

This commit is contained in:
Cedric Beust 2016-07-28 00:29:59 -08:00
parent effdb8d142
commit b6cb358606

View file

@ -36,6 +36,6 @@ interface IDependencyManager {
* allDependencies is typically either compileDependencies or testDependencies
*/
fun calculateDependencies(project: Project?, context: KobaltContext,
scopeFilters: Collection<Scope> = emptyList(),
scopeFilters: Collection<Scope> = listOf(Scope.COMPILE),
vararg passedDependencies: List<IClasspathDependency>): List<IClasspathDependency>
}