Add spring.schemas and SVG images to NoHttp Gradle Plugin source excludes.

Resolves #gh-623.
This commit is contained in:
John Blum
2022-09-26 13:02:01 -07:00
parent ff7fdfbe15
commit 6c8f9936a6

View File

@@ -42,6 +42,12 @@ allprojects {
}
nohttp {
source.excludes = [ "**/.gradle/**", "**/.m2/**", "**/build/**", "**/target/**" ]
source.excludes = [
"**/.gradle/**",
"**/.m2/**",
"**/build/**",
"**/target/**",
"**/spring.schemas",
"**/docs/asciidoc/images/epub-cover.svg"
]
}