Re: maven git commit: MNG-5871 refactoring: put url extrapolation algorithm in inheritance model merger

2015-08-17 Thread Hervé BOUTEMY
ok, done thank you Hervé Le lundi 17 août 2015 08:44:54 Jason van Zyl a écrit : > Go for it. Let me know when you’re happy and I’ll spin the release. > > > On Aug 17, 2015, at 1:57 AM, Hervé BOUTEMY wrote: > > > > I just checked this commit through core ITs and everything went well > > > > An

OSGEO sync

2015-08-17 Thread Petar Tahchiev
Hi guys, I use some artifacts from OSGEO (http://www.osgeo.org/) in my build, and they have their own maven repository http://download.osgeo.org/webdav/geotools/ which is super slow and my build fails because the connection times out. So I asked them why they don't publish to the maven central and

Re: single string GAV exploding as a utility method somewhere in Maven?

2015-08-17 Thread Jason van Zyl
In Aether in DefaultArtifact the constructor contains the regex used for parsing. You can use that directly if you’re using Aether to resolve, or if you’re using the Maven APIs you can convert the Aether artifact to a Maven artifact using RepositoryUtils.toArtifact() in maven-core. > On Aug 17,

Re: maven git commit: MNG-5871 refactoring: put url extrapolation algorithm in inheritance model merger

2015-08-17 Thread Jason van Zyl
Go for it. Let me know when you’re happy and I’ll spin the release. > On Aug 17, 2015, at 1:57 AM, Hervé BOUTEMY wrote: > > I just checked this commit through core ITs and everything went well > > Any objection if I merge it to master now, before the Maven 3.3.7 release? > > Regards, > > Herv

single string GAV exploding as a utility method somewhere in Maven?

2015-08-17 Thread Barrie Treloar
Is there somewhere in the Maven code that we handle a single string as a GAV that can get exploded correctly for Artifact resolving? The dependency:get does it manually, and I'm loathe to copy-and-paste.