java - Continue maven build although dependency is missing -
is there way tell maven continue build although dependency ist missing? tried <optional>true</optional>
doesn't seem in scenario.
i have build costum maven plugin package phase , still have package if 1 or multiple dependencies not found.
thanks in advance.
<optional>true</optional>
optional means client using library not need dependency. example spring's orm module, has optional dependencies hibernate, jdo, jpa , mybatis. nobody ever use of these in project, each marked optional.
your case different, trying compile something, , can if libraries compile against present. sorry, don't work that.
Comments
Post a Comment