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
Currently however, the wildcard pattern with "regexp": "false" seems to have problems picking up files.
(this might be a bug or it might be a lack of my understanding)
If its a lack of my understanding, then this would be partly due to the fact that its not well documented enough. I'd like to see fuller working examples on JFrog's File Specs page of using a pattern with and without regexp that also uses a subdirectory folder path, as shown in my example:
UPDATE: I have resolved my problem, but a good example would benefit others. My issue was that I did not use wildcard * for the repository name portion of the pattern syntax,
[Mandatory if 'aql' is not specified]
Specifies the source path in Artifactory, from which the artifacts should be downloaded, in the following format: [repository name]/[repository path]. You can use wildcards to specify multiple artifacts.
So my pattern was missing the wildcard * at the beginning since I am using Jenkins pipeline and a workspace:
"pattern":"*/build/lib/my-plugin*.jar"
The text was updated successfully, but these errors were encountered:
Currently however, the wildcard pattern with "regexp": "false" seems to have problems picking up files.
(this might be a bug or it might be a lack of my understanding)
C:/Jenkins/workspace/build/lib/my-plugin-1.0.0.-SNAPSHOT-11.jar
If its a lack of my understanding, then this would be partly due to the fact that its not well documented enough. I'd like to see fuller working examples on JFrog's File Specs page of using a pattern with and without regexp that also uses a subdirectory folder path, as shown in my example:
UPDATE: I have resolved my problem, but a good example would benefit others. My issue was that I did not use wildcard * for the repository name portion of the pattern syntax,
[Mandatory if 'aql' is not specified]
Specifies the source path in Artifactory, from which the artifacts should be downloaded, in the following format: [repository name]/[repository path]. You can use wildcards to specify multiple artifacts.
So my pattern was missing the wildcard * at the beginning since I am using Jenkins pipeline and a workspace:
The text was updated successfully, but these errors were encountered: