I have a question regarding parallel maven build. If several maven builds are running in same machine at the same time, and some build results are used by other builds with snapshot version dependency, what will happen? Can maven handle such situation and get correct snapshot version?
相关问题
- multidplyr : assign functions to cluster
- Include pom.xml in Jar with gradle
- What order does maven find its dependencies?
- proguard causing EnumMap NPE on dynamically declar
- Maven: How to read the Parent POM version
相关文章
- IDEA2020 安装maven 插件后,springboot程序 SpringBootApplic
- pom文件中的插件定义
- pom.xml中的project为何报红
- Hibernate Tutorial - Where to put Mapping File?
- How to use doMC under Windows or alternative paral
- Cannot use org.jvnet.jax-ws-commons.jaxws-maven-pl
- Parallel while loop in R
- Does gfortran take advantage of DO CONCURRENT?
See the explanations here:
Maven concurrent builds on CI server
In other words. The behaviour in such cases is not defined, cause the access to the local repository is not thread safe.
So i would avoid such things.