Re: Download an artifact and its dependencies without a pom.xml

2017-03-02 Thread Manfred Moser
I have a similar tool that can be used to provision from and to a repository. https://github.com/simpligility/maven-repository-tools/tree/master/maven-repository-provisioner hth Manfred Curtis Rueden wrote on 2017-03-02 14:29: > Hi everyone, > >> My use case is that I want to run a class

Re: Download an artifact and its dependencies without a pom.xml

2017-03-02 Thread Curtis Rueden
Hi everyone, > My use case is that I want to run a class from a Maven artifact. I turned my "synthesize a dummy POM" approach into a full-blown shell script called jrun [1]. You can use it to conveniently run Java code from any remote Maven repository. For example, to spin up the Jython REPL:

Download an artifact and its dependencies without a pom.xml

2017-03-02 Thread Curtis Rueden
Hi everyone, Is there an easy way to download an artifact and its dependencies to a folder locally? * dependency:get will download a single artifact without needing a pom.xml. * dependency:copy-dependencies will copy the dependencies of the current project to a target location. But can these