Skip to content

Commit 0a367ae

Browse files
authored
fix exclusion rule in spring boot build
1 parent 87f678b commit 0a367ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/resources/common/gradle/springboot.gradle.mustache

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ bootWar {
158158

159159
def excludeArtifacts = ["WEB-INF/lib/servlet-api-2*.jar"]
160160
if (project.hasProperty("tomcatVersion")) {
161-
excludes += ["WEB-INF/lib/tomcat-*.jar"]
161+
excludeArtifacts += "WEB-INF/lib/tomcat-*.jar"
162162
}
163163
excludes = excludeArtifacts
164164

0 commit comments

Comments
 (0)