Skip to content

Commit

Permalink
Add test against Gradle 7.4.2 and fix fallback to empty list for plug…
Browse files Browse the repository at this point in the history
…inDependencies
  • Loading branch information
floscher committed May 29, 2022
1 parent d88df13 commit f75dfb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,7 @@ public class JosmManifest(private val project: Project) {
.filter { it.isNotBlank() }
.map { it.trim() }
}
?: listOf()
)

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ class DemoTest {
GRADLE_7_0_2(false),
GRADLE_7_1_1(true),
GRADLE_7_2(true),
GRADLE_7_3_3(true);
GRADLE_7_3_3(true),
GRADLE_7_4_2(true),
;

val version = name.substring(name.indexOf('_') + 1).replace('_', '.')
}
Expand Down

0 comments on commit f75dfb3

Please sign in to comment.