I am trying to integrate in my spring boot project, an artifact developed in python using azure devops and maven.At the moment of selecting my artifact, in the "connection feed" section I indicate that I want to do it with maven, where it gives me the steps to integrate in my pom.xml the following:
<repositories><repository><id>central</id><url>https://repo.maven.apache.org/m2</url><releases><enabled>true</enabled></releases><snapshots><enabled>true</enabled></snapshots></releases><repository><id>id-name</id><url>url-package-devops</url><releases><enabled>true</enabled></releases><snapshots><enabled>true</enabled></snapshots></releases></repositories><distributionManagement></repository><id>id-name</id><url>url-package-devops</url><releases><enabled>true</enabled>.</releases><snapshots><enabled>true</enabled></snapshots></repository></distributionManagement>Then, I use the mvn install command, it seems to install the artifact in my project but I can't see it, or I don't know where it is.How could I download it and use it in some .java file?