Reputation: 4435
I'm not able to exclued certain files in a Grails 3, Gradle Multimodule-Project. The configuration is exactly as discribed in the documentation.
In project\module\grails-app\conf\application.groovy
I have the exclution defined: grails.assets.plugin."module-plugin".excludes = ["**/*.md"]
Then I call on module level ../gradlew assetClean
and ../gradlew assetCompile
.
Any idea?
Upvotes: 1
Views: 367
Reputation: 4435
I defined it in project/build.gradle
, not in project/module/grails-app/conf/application.groovy
.
Like this it works!
Upvotes: 1