I have a Maven Project with this folder structure (after run 'maven clean install' through jenkins):
PS: there are other files and directories inside this 'target' folder, but the ones I need are just those.
Well, for AWS deployment, I need to create a ZIP file with this exact structure (missing the 'ebs' folder):
My pipeline, in Jenkins, creates the ZIP with the jar ane 'ebs' folder inside, but I need Procfile and .ebextensions at root level, outside 'ebs' folder.
Jenkins configuration:
I also tried "ebs", "ebs/", "ebs/*" and "ebs/.". None works. What am I doing wrong? Should be simple to include files in ZIP package, but it doesnt.