You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current way of configuring makes it impossible to change CopySpec properties to match an other layout. I am not able to change the structure of the config directory on disk and map it to the right structure as it should be in the amp.
I would like to be able to use an alternative configuration layout where I can avoid creating the intermediate directory structure alfresco/modules/$moduleId for my amp.
For example, I place my module-context.xml file directly in src/main/amp/config and copy it in the amp to config/alfresco/modules/$moduleId/module-context.xml while expanding placeholders.
task amp(type: Amp) {
config {
from "src/main/amp/config"
into "alfresco/modules/${moduleId}"
expand [ "moduleId": moduleId ]
}
}
The text was updated successfully, but these errors were encountered:
At this moment file properties of the Amp task are configured like for example:
The current way of configuring makes it impossible to change
CopySpec
properties to match an other layout. I am not able to change the structure of the config directory on disk and map it to the right structure as it should be in the amp.I would like to be able to use an alternative configuration layout where I can avoid creating the intermediate directory structure
alfresco/modules/$moduleId
for my amp.For example, I place my
module-context.xml
file directly insrc/main/amp/config
and copy it in the amp toconfig/alfresco/modules/$moduleId/module-context.xml
while expanding placeholders.The text was updated successfully, but these errors were encountered: