I had the same problem.
Have you published a version of SNAPSHOT for your artifact? If so this may be your problem.
As you know, when publishing locally, your snapshot version is stored in the .ivy2 / local directory. The remote version is stored in the .ivy2 / cache directory.
When viewing the .ivy2 / cache / {dependency} folder, you will see that it has downloaded only the xml and properties file. So just metadata and no cans. This is the actual reason why it cannot be analyzed because it does not exist.
Since .ivy2 / cache takes precedence over .ivy2 / local, it will not see your local published version. There are two ways to fix this.
- Update snapshot version number (recommended)
- Delete SNAPSHOT from your artifactory and delete the .ivy2 / cache / {dependency} folder for each client that has a local version.
In my opinion, the first one is the path.
Jork Aug 31 '16 at 9:54 2016-08-31 09:54
source share