Re: Special parameters - sha1

2017-11-20 Thread Eric Benzacar
Thanks for the insight; I guess that's kind of what I was doing with the sha1/build number. I would end up with a 5.0.0-1a2b3c4d which would make it a unique,random number. I may end up rethinking this though based on some of the insights you shared. Thanks, Eric On Fri, Nov 17, 2017 at 4:13

Re: maven-artifact-transfer: How to build the classpath for arbitrary GAVs?

2017-11-20 Thread Robert Scholte
Hi Andreas, DependencyResolver is indeed the correct class to use. Any of the overloaded methods will do: When you have the dependecy, you can use it directly. In other cases use DependableCoordinate, which represents an instance that can contain dependencies. That can either be a

maven-artifact-transfer: How to build the classpath for arbitrary GAVs?

2017-11-20 Thread Andreas Sewe
Hi, I am currently struggling with the maven-artifact-transfer 0.9.1 API. Here's what I am trying to accomplish: Given an arbitrary GAV and a scope (compile or test), construct the compile- or test-scoped flat classpath for that GAV. DependencyResolver seems to be the class I am after, but I