Resolve Maven artifacts
Use rvs to select the Ravenstash repository and supply temporary credentials
to the build tool.
Resolve through rvs
Section titled “Resolve through rvs”Use rvs to run a Maven build with ephemeral Ravenstash settings:
rvs art select namespace/packagesrvs mvn verifyTo fetch one coordinate directly into the local Maven cache:
rvs art select namespace/packagesrvs art maven install com.acme:internal-sdk:1.2.3The generated Ravenstash settings are temporary and removed after the invocation.
Declare dependencies normally in the project:
<dependency> <groupId>com.acme</groupId> <artifactId>internal-sdk</artifactId> <version>1.2.3</version></dependency>Resolve with Gradle through rvs
Section titled “Resolve with Gradle through rvs”rvs art select namespace/packagesrvs gradle buildVerify resolution
Section titled “Verify resolution”Run the build with a clean dependency cache when practical and inspect client output to confirm the selected Ravenstash repository supplied the dependency.

