Re: Fetch all remote dependencies NOT in my pom?

2015-07-23 Thread Doug Douglass
Kevin, If the builds are currently downloading the same artifacts only once, then running any of the suggested mvn commands during your build won't actually save any time will it? You mention an init process...Are you planning on running the artifact pre-caching outside of your CI build e.g. at

Re: Fetch all remote dependencies NOT in my pom?

2015-07-23 Thread Kevin Burton
I didn’t try go-offline.. worth a shot! On Wed, Jul 22, 2015 at 8:57 PM, Curtis Rueden ctrue...@wisc.edu wrote: Hi Kevin, What I want to do is just download all artifacts not in com.spinn3r.* “ group ID. Did you try: mvn dependency:go-offline -DexcludeGroupIds=com.spinn3r ... ?

RE: Fetch all remote dependencies NOT in my pom?

2015-07-22 Thread Sander Verhagen
! -Original Message- From: burtonator2...@gmail.com [mailto:burtonator2...@gmail.com] On Behalf Of Kevin Burton Sent: Wednesday, July 22, 2015 20:27 To: Maven Users List Subject: Re: Fetch all remote dependencies NOT in my pom? I tried the following.. but that doesn’t work. hm… stumped

Re: Fetch all remote dependencies NOT in my pom?

2015-07-22 Thread Ron Wheeler
] On Behalf Of Kevin Burton Sent: Wednesday, July 22, 2015 20:27 To: Maven Users List Subject: Re: Fetch all remote dependencies NOT in my pom? I tried the following.. but that doesn’t work. hm… stumped on this one. mvn -DexcludeGroupIds=com.spinn3r.artemis -DexcludeTransitive=true dependency:resolve

Re: Fetch all remote dependencies NOT in my pom?

2015-07-22 Thread Curtis Rueden
Hi Kevin, What I want to do is just download all artifacts not in com.spinn3r.* “ group ID. Did you try: mvn dependency:go-offline -DexcludeGroupIds=com.spinn3r ... ? Regards, Curtis On Wed, Jul 22, 2015 at 10:50 PM, Kevin Burton bur...@spinn3r.com wrote: What I want to do is just

Re: Fetch all remote dependencies NOT in my pom?

2015-07-22 Thread Ron Wheeler
Could you not just build it once and copy the contents of the local cache after it downloads everything? Ron On 22/07/2015 11:57 PM, Curtis Rueden wrote: Hi Kevin, What I want to do is just download all artifacts not in com.spinn3r.* “ group ID. Did you try: mvn dependency:go-offline

Re: Fetch all remote dependencies NOT in my pom?

2015-07-22 Thread Kevin Burton
I tried the following.. but that doesn’t work. hm… stumped on this one. mvn -DexcludeGroupIds=com.spinn3r.artemis -DexcludeTransitive=true dependency:resolve mvn -DexcludeArtifactIds=artemis -DexcludeTransitive=true dependency:resolve On Wed, Jul 22, 2015 at 8:13 PM, Kevin Burton

Re: Fetch all remote dependencies NOT in my pom?

2015-07-22 Thread Kevin Burton
What I want to do is just download all artifacts not in com.spinn3r.* “ group ID. They aren’t built yet or in any repositories yet. This is for a continuous integration systems so I want to pre-cache them. After this they’re just restored from cache to build faster. Is your repo on the same