PaulWinstone / demoModule

A demonstration project for Eclipse Java Modules Gradle to give executable image
Apache License 2.0
1 stars 1 forks source link

Put config in a subdirectory #3

Closed PaulWinstone closed 4 years ago

PaulWinstone commented 4 years ago

Trying to put the config in a subdirectory but it always ends up in root. What is the correct syntax as below the into directory config is ignored tasks.processResources { from "config/$customerId" into "$buildDir/config" }

PaulWinstone commented 4 years ago

It appears that the syntax to move from a customer config to a config directory is tasks.processResources { into "$buildDir" from ("config/$customerId"){ into "config" } }