github.com/SAP/cloud-mta-build-tool@v1.2.27/internal/archive/testdata/testbuildparams/mta.yaml (about) 1 ID: testbuildparams 2 _schema-version: '2.1' 3 version: 0.0.1 4 5 modules: 6 7 - name: node 8 type: nodejs 9 path: node 10 build-parameters: 11 requires: 12 - name: ui1 13 artifacts: ["*"] 14 target-path: "newfolder" 15 16 - name: ui1 17 artifacts: ["unknown.txt"] 18 target-path: "newfolder" 19 20 - name: ui2 21 artifacts: ["deep/folder/inui2/somefile.txt"] 22 target-path: "existingfolder/deepfolder" 23 24 - name: ui2 25 artifacts: ["./deep/*/inui2/another*"] 26 target-path: "./existingfolder/deepfolder" 27 28 - name: ui2 29 artifacts: ["deep/folder/inui2/somefile.txt", "*/folder/"] 30 target-path: "newfolder/newdeepfolder" 31 32 33 - name: ui1 34 type: html5 35 path: ui1 36 37 - name: ui2 38 type: html5 39 path: ui2 40 41 42 43 44 45