Having a dependency to some other scm repo is not a good approach. If that changes your build could fail all of a sudden and you want consistency.
Your Maven project should typically be self contained. Any dependency should be a Maven artifact (that is immutable). /Anders On Wed, Jun 12, 2019 at 7:50 AM Rajesh Deshpande <[email protected]> wrote: > Hello, > I have a maven project that builds Java jar files. I wan to run a python > script as one of the goals in the verify phase. I am planning to use the > ant run plugin for running the python script. The python script is stored > in a separate repository that I would like to copy to my project root > folder using maven. Is this possible? What's the best way to approach this? > > Thanks! >
