Skip to content

Commit

Permalink
DependencyLockExtension: skippedDependencies not lazy api for backwra…
Browse files Browse the repository at this point in the history
…ds compatibility
  • Loading branch information
rpalcolea committed Nov 15, 2023
1 parent 07a7fe1 commit 3a0a5b7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ abstract class DependencyLockExtension {
globalLockFile.convention('global.lock')
configurationNames.convention([])
updateDependencies.convention([])
skippedDependencies.convention([])
includeTransitives.convention(false)
lockAfterEvaluating.convention(true)
updateDependenciesFailOnInvalidCoordinates.convention(true)
Expand All @@ -37,14 +36,15 @@ abstract class DependencyLockExtension {
abstract Property<String> getGlobalLockFile()
abstract SetProperty<String> getConfigurationNames()
abstract SetProperty<String> getUpdateDependencies()
abstract SetProperty<String> getSkippedDependencies()
abstract Property<Boolean> getIncludeTransitives()
abstract Property<Boolean> getLockAfterEvaluating()
abstract Property<Boolean> getUpdateDependenciesFailOnInvalidCoordinates()
abstract Property<Boolean> getUpdateDependenciesFailOnSimultaneousTaskUsage()
abstract Property<Boolean> getUpdateDependenciesFailOnNonSpecifiedDependenciesToUpdate()
abstract SetProperty<String> getAdditionalConfigurationsToLock()

Set<String> skippedDependencies = [] as Set

Set<String> skippedConfigurationNamesPrefixes = [] as Set

Closure dependencyFilter = { String group, String name, String version -> true }
Expand Down

0 comments on commit 3a0a5b7

Please sign in to comment.