jira-importer
jira-importer
**[Karl Heinz Marbaise](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=khmarbaise)** commented Does that mean you are using the same local repository from independant jenkins jobs?
**[Dennis Lundberg](https://issues.apache.org/jira/secure/[email protected])** commented `@Karl-Heinz`, In my case yes. The Jenkins jobs all share the same local repository.
**[Karl Heinz Marbaise](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=khmarbaise)** commented Hm...I would say it's not wise to share a common local repository from two Jenkins jobs which makes them in consequence no longer independent. Furthermore as...
**[Gareth Daniel Smith](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=garethdanielsmith)** commented Same issue is affecting me - multiple concurrent builds on a Bamboo build server. IMHO Maven should really handle this use-case, because it is very common.
**[Jonathan Woods](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=jonw)** commented We're running Maven builds on Jenkins slave instances, and to avoid clashes of the kind described in this ticket we're using `${user.home}/.m2/repository/${env.EXECUTOR_NUMBER}` in the operative settings.xml file...
**[Dan Armbrust](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=armbrust)** commented Whenever someone mentions maven, and I curse under my breath, this bug report is now the most recent example of everything that is wrong with this project....
**[Dan Armbrust](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=armbrust)** commented I have run across this, in researching this issue - will be testing it out myself: http://takari.io/book/30-team-maven.html#concurrent-safe-local-repository No idea why this code has to be outside of...
**[Tibor Digana](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=tibor17)** commented [Geoff Simpson](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=gsimpson) If you often see this issue and you have multithreaded build system, it means you have the problem of design because you have a common...
**[Rocco De Angelis](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=rdeangelis83)** commented [tibordigana](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=tibordigana) I don't get it. I run a multithreaded build on my local machine and no other maven process or build is running. So I don't...
**[Alan Czajkowski](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=alan-czajkowski)** commented [Geoff Simpson](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=gsimpson) [tibordigana](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=tibordigana) [Rocco De Angelis](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=rdeangelis83) It appears that [Jonathan Woods](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=jonw) has the most reasonable solution to this problem: by adding this to the build server's Maven...