Referring the guide below, I'm trying to upload library files to a maven repository on Artifactory; however, I'm having an error.
We've installed Artifactory on premise Linux server, and created a maven repository to store libraries for Java app build. It's prepared because our environment does not allow access to public internet and jcenter. We're planning to configure build job with maven on Jenkins which takes all the necessary libraries from the Artifactory repository.
The library files are given by development team. It follows maven structure because it's exported from Maven on local development PC.
I zipped the files, placed on the server and hit the below code.
curl -u user:password -X PUT http://[artifactory URL]/../[repository name] /tmp/src/archive.zip
Expected successful files upload to the repository. However, I've got the below error.
{"errors" : [ {
"status" : 403,
"message" : ""
}]
}curl: (3) <url> malformed