2
0
Fork 0
mirror of https://github.com/ethauvin/bld.git synced 2025-04-26 00:37:10 -07:00

Support the provided scope by the PomBuilder class

This commit is contained in:
Geert Bevin 2024-06-23 15:02:11 -04:00
parent e65668a8be
commit 4f20fb2cc7
2 changed files with 50 additions and 17 deletions

View file

@ -152,6 +152,7 @@ public class PomBuilder {
if (dependencies() != null && !dependencies().isEmpty()) {
addDependencies(t, Scope.compile);
addDependencies(t, Scope.runtime);
addDependencies(t, Scope.provided);
t.setBlock("dependencies-tag");
}