We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 527ebd3 commit 7bd2590Copy full SHA for 7bd2590
components/sbm-core/src/main/java/org/springframework/sbm/build/api/ApplicationModules.java
@@ -112,9 +112,8 @@ private List<Module> getModulesContainingMavens(List<MavenResolutionResult> mave
112
*/
113
public List<Module> getTopmostApplicationModules() {
114
List<Module> topmostModules = new ArrayList<>();
115
- Set<String> packagingTypes = Set.of("jar","war");
+ Set<String> packagingTypes = Set.of("jar","war","mule-application");
116
modules.forEach(module -> {
117
- // is jar
118
if (packagingTypes.contains(module.getBuildFile().getPackaging())) {
119
// no other pom depends on this pom in its dependency section
120
if (noOtherPomDependsOn(module.getBuildFile())) {
0 commit comments