azuremavenazure-devopsmuleazure-pipelines

Install custom jars azure devops maven artifact


I have custom dependency jars files in our local maven repo folder like com.org.* to build a Mule application. I have installed these jars files using mvn install command so that it will get published to maven local repo and again pulled by pom.xml.

Now, I have to replicate the same thing inside azure DevOps under the maven tab. I have been struggling a lot to find a solutions. Azure DevOps experts could you please guide me here. Any help would be highly appreciated.

Thanks


Solution

  • Install custom jars azure devops maven artifact

    You could create your custom maven feed on the Azure DevOps, then publish those custom dependency jars files into this custom maven feed, and use mvn install command with Maven task.

    For the details info, please check following documents:

    Set up Azure Pipelines and Maven

    Get started with Maven packages in Azure DevOps Services and TFS

    Configure Azure DevOps Services for Maven package management

    Hope this helps.