I’m giving this another chance to hopefully get a response. Am I explaining the issue clearly enough? Even if this isn’t possible, I’d like some confirmation that I’m not missing something. Thanks…
I think this is a side effect of the way we handle this internally. The current project is tracked by its group/name in the dependency graph, so when you try to add the same group/name with a different version, those two things collide.
I can’t think of a way to do this and still use the configuration/dependency management infrastructure. If you only care about the jar, could you construct the URL to download it from (e.g., http://yourartifactory/repo/<group>/<name>/<version>/<name>-<version>.jar) There might be some helper methods/classes to make that a little cleaner.
Thanks for the reply. I could pull directly from Artifactory, but it’s not that simple since I don’t know the version. I would have to use Artifactory’s rest API to figure out what the latest version is. This is possible of course, but not ideal since it ties my solution to usage of Artifactory.