You can also add the build information to Artifactory by making a request to the build upload API.
For example:
curl -L -X PUT 'https://<your artifactory hostname>/artifactory/api/build' -H 'Content-Type: application/json' -H 'Authorization: Bearer <your auth token>' -d '{
"version": "1.0",
"name": "build-test",
"number": "1",
"started": "2023-06-15T16:24:42.116+0300",
"modules": [
{
"id": "org.jfrog.test:multi:2.36-2-SNAPSHOT",
"artifacts": [
{
"type": "pom",
"sha1": "a1ab9222c219ec885ce4374b77cc4bd93485c6c8",
"md5": "495a5e916f0e308a8ed4fc170e4d9136",
"name": "multi-2.36-2-SNAPSHOT.pom"
}
]
}
],
"issues": {
"tracker": {
"name": "JIRA",
"version": "6.0.1"
},
"aggregateBuildIssues": false,
"aggregationBuildStatus": "Released",
"affectedIssues": [
{
"key": "JT-5",
"url": "https://jiracloud-connector-test.atlassian.net/browse/JT-5",
"summary": "Dev testing",
"aggregated": false
}
]
}
}'