Class: Dependabot::Maven::FileUpdater

Inherits:
FileUpdaters::Base
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/dependabot/maven/file_updater.rb,
lib/dependabot/maven/file_updater/declaration_finder.rb,
lib/dependabot/maven/file_updater/property_value_updater.rb

Defined Under Namespace

Classes: DeclarationFinder, PropertyValueUpdater

Instance Method Summary collapse

Instance Method Details

#updated_dependency_filesObject



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/dependabot/maven/file_updater.rb', line 19

def updated_dependency_files
  updated_files = T.let(dependency_files.dup, T::Array[Dependabot::DependencyFile])

  # Loop through each of the changed requirements, applying changes to
  # all pom and extensions files for that change. Note that the logic
  # is different here to other package managers because Maven has property
  # inheritance across files
  dependencies.each do |dependency|
    updated_files = update_files_for_dependency(
      original_files: updated_files,
      dependency: dependency
    )
  end

  updated_files.select! { |f| f.name.end_with?(".xml") }
  updated_files.reject! { |f| dependency_files.include?(f) }

  raise "No files changed!" if updated_files.none?

  updated_files
end