반응형

포맷들

Directory/**/*.* -> Directory 아래에 있는 모든 파일, (하위 파일 모두 포함)
**/*.* -> 워크스페이스 안에 있는 모든 파일
**/*.xml -> 워크스페이스에 있는 모든 xml 파일들
Directory/**/*.xml -> Directory 아래에 있는 모든 xml 파일들 (하위 파일 모두 포함)


Directory/**/*.* -> All the files recursively under Directory
**/*.* -> all the files in the workspace
**/*.xml -> all xml files in your workspace.
Directory/**/*.xml -> All the xml files recursively under Directory

출처


https://stackoverflow.com/questions/40597655/jenkins-archive-artifacts-whats-the-format

반응형