How to find out the latest jar dependency available in artifactory by JFrog based on GroupId and ArtifactId.
For example: The below dependency is the latest available .But how the value 5.1.0.RELEASE can be obtained through code?
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>5.1.0.RELEASE</version>
</dependency>
I have searched from JFrog rest api.But didn't found clear document
The answer in the below link applies mostly to maven 2 .
How do I tell Maven to use the latest version of a dependency?