I have defined a plan in bamboo that package a remote repository to a Jar file (Maven project). Basically this Jar is the first result I wanted to get from this plan. Now I would like to deploy this artifact to Artifactory, using the Artifactory Generic Deploy task. In this task, it has to be defined a Specs file specifying the pattern and target of this Jar.
This is the Specs file I defined :
{
"files": [
{
"pattern": "${bamboo.build.working.directory}/target/*jars",
"target": "https://artifactory.mycompany.com:443/sandbox/"
}
]
}
I would like to deploy this Jar file into the repository I defined above (sandbox). The plan runs well but I don't see anything in this repository after its execution.
Is there something else to configure in this Specs file in order to obtain the behaviour I would like ? (basically push this artifact to a repository in Artifactory)
Thanks!