间接依赖路径最短优先

a->b->c1.0
a->e->f->c1.1

====>c1.0

申明顺序优先

<!-- test1 -> c1.0 -->
<dependency>
	<groupId>org.test</groupId>
	<artifactId>test1</artifactId>				
</dependency>
<!-- test2 -> c2.0 -->
<dependency>
	<groupId>org.test</groupId>
	<artifactId>test2</artifactId>				
</dependency>

======>c1.0

相关文章:

  • 2021-12-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-23
猜你喜欢
  • 2021-08-12
  • 2021-04-08
  • 2021-12-13
  • 2021-07-21
  • 2021-05-28
  • 2022-01-08
相关资源
相似解决方案