Re: Transitive dependencies and version management

2017-08-17 Thread Russell Gold
Have you considered using snapshot versions for C? If both A and B depend on a snapshot, they will automatically take the latest version in the repository. https://stackoverflow.com/questions/5901378/what-exactly-is-a-maven-snapshot-and-why-do-we-need-it#5901460 > On Aug 17, 2017, at 8:34 PM,

Transitive dependencies and version management

2017-08-17 Thread Halper, Andrew
Greetings, I was wondering if someone might be able to help with a Maven version management problem we've encountered. We have several interdependent, legacy Java projects, that have recently been re-cast as Maven projects. Now that we have the first iteration done, it's apparent that one

Maven properties passed to external ant build file

2017-08-17 Thread Justin Georgeson
I'm using maven-antrun-plugin to execute targets in an external Ant build file, and having an issue with inherited properties. ${skipIvyPublish} As you might guess from the above, I have a

Re: options

2017-08-17 Thread James Klo
You can attach and inspect a running Docker container with: docker exec -it bash But the cache should be by default in ~/.m2. So depending upon what user your container is running, it should download all the artifacts into $HOME/.m2 Also you should be able to inspect the mvn output inside

Re: options

2017-08-17 Thread Tomaž Majerhold
But if I use mvn -X help:effective-settings it hide me information about localRepository I'm using inside a docker, and I can override MAVEN_OPTS and there I could override with -Dmaven.repo.local but at run time I wont to know where is saved(to be sure) It is about cache in my container

Re: options

2017-08-17 Thread Tomaž Majerhold
Yes at run time(maven showing it on standard output), where are actually saved, because if you are using maven docker image and you can not go inside a container interactively. Regards, Tomaž Russell Gold je 17. 08. 2017 ob 14:01 napisal: Hi Tomaž, What do you mean by, “downloaded”? Do

Re: options

2017-08-17 Thread Russell Gold
Hi Tomaž, What do you mean by, “downloaded”? Do you mean where the local maven repository is located? You can configure that in settings.xml Regards, Russ > On Aug 17, 2017, at 5:25 AM, Tomaž Majerhold wrote: > > Hello! >

options

2017-08-17 Thread Tomaž Majerhold
Hello! Is it possible(some options switches ) at runtime to determine where(location) artifacts has ben downloaded? It would be useful information for running maven in docker. Regards, Tomaž - To unsubscribe, e-mail: