File tree 2 files changed +3
-2
lines changed
src/main/java/io/micrometer/release
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -64,9 +64,9 @@ public Set<Dependency> fetchAllDependencies() {
64
64
&& dependency .artifact ().equalsIgnoreCase (parts [2 ]))
65
65
.findFirst ()
66
66
.ifPresentOrElse (dependency -> {
67
- log .debug ("Dependency {} is already present in compile scope" , parts [1 ] + ":" + parts [2 ]);
67
+ log .trace ("Dependency {} is already present in compile scope" , parts [1 ] + ":" + parts [2 ]);
68
68
if (dependency .toIgnore () && !finalTestOrOptional ) {
69
- log .debug (
69
+ log .trace (
70
70
"Dependency {} was previously set in test or compile scope and will be in favour of one in compile scope" ,
71
71
dependency );
72
72
dependencies .remove (dependency );
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ class DependencyVerifier {
65
65
void verifyDependencies (String branch , String orgRepository ) {
66
66
cloneRepo (branch , orgRepository );
67
67
GradleParser gradleParser = getGradleParser (branch );
68
+ log .info ("Fetching all dependencies before dependabot..." );
68
69
Set <Dependency > dependenciesBeforeDependabot = gradleParser .fetchAllDependencies ();
69
70
Status status = dependabotUpdateStatus (orgRepository );
70
71
pullTheLatestRepoChanges ();
You can’t perform that action at this time.
0 commit comments