Re: Using Maven 3 with non-standard repository layout (Ivy)

2018-05-24 Thread Francois MAROT
I would guess that Ivy can work a lot better with Maven repositories than Maven can with Ivy repositories. I would investigate a one-shot scripted migration of your Ivy repo to a new Maven repo and force existing publishers to the Ivy repo to configure Ivy to publish to the new Maven repo. But I

Re: Using Maven 3 with non-standard repository layout (Ivy)

2018-05-24 Thread Tim Astle
Thanks Robert, Digging around led me to this option as well: https://github.com/remis-thoughts/ivy-maven-plugin Doing this isn't ideal, but more of a necessary evil for a proof of concept. Thanks! Tim On Thu, May 24, 2018 at 1:50 PM, Robert Scholte wrote: > Maven 2 and

Re: Using Maven 3 with non-standard repository layout (Ivy)

2018-05-24 Thread Robert Scholte
Maven 2 and Maven 3 both use the same structure for repositories ( which is called a maven2 repo. Yes the name is a bit confusing ). If you want Maven to work with a different kind of repository, e.g. ivy to maven2, you need to use a repository manager. The only one I am aware of that

Using Maven 3 with non-standard repository layout (Ivy)

2018-05-23 Thread Tim Astle
I was wondering if anyone had any suggestions for working with a non-standard repository layout? Basically, I have a Maven 3 project but I need to fetch a fetch artifacts from an Ivy repository. http://ant.apache.org/ivy/history/2.0.0/use/info.html Can Maven handle this directly? If not, is