Skip to content

Commit

Permalink
小调整。
Browse files Browse the repository at this point in the history
  • Loading branch information
wangliang181230 committed May 11, 2024
1 parent db33c33 commit e2b6447
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,12 @@ public void execute() throws MojoExecutionException {
getLog().info("File-Generate has been skipped, because module name '" + project.getArtifactId() + "' not matched '" + moduleNamePattern + "'.");
return;
}
}

// 判断排除项
if (StringUtils.isNotEmpty(excludeModules) && (',' + excludeModules.replaceAll("\\s+", "") + ',').contains(',' + project.getArtifactId() + ',')) {
getLog().info("File-Generate has been skipped, because exclude, the exclude-modules is '" + excludeModules + "'.");
return;
}
// 判断排除项
if (StringUtils.isNotEmpty(excludeModules) && (',' + excludeModules.replaceAll("\\s+", "") + ',').contains(',' + project.getArtifactId() + ',')) {
getLog().info("File-Generate has been skipped, because exclude, the exclude-modules is '" + excludeModules + "'.");
return;
}


Expand Down

0 comments on commit e2b6447

Please sign in to comment.