Re: options

2017-08-18 Thread James Klo
> On Aug 17, 2017, at 11:59 PM, Tomaz Majerhold > wrote: > > No, because it is on CI system and I can't do it interactively(I know docker > switches ), thx any way. Where the container instance runs shouldn’t matter. If it’s a container as you say, the Maven

Re: options

2017-08-18 Thread Tomaz Majerhold
No, because it is on CI system and I can't do it interactively(I know docker switches ), thx any way. Regards, Tomaž James Klo je 17.8.2017 ob 16:25 napisal: You can attach and inspect a running Docker container with: docker exec -it bash But the cache should be by default in ~/.m2. So

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! >