我如何设置Maven在自己的存储库之前先在Central中查看

时间:2018-08-07 20:08:13

标签: maven repository

如前所述,如何首先搜索中央 ,然后搜索我自己的。我找不到任何说明如何操作的文档,或者甚至有可能。

1 个答案:

答案 0 :(得分:1)

假设“我自己的存储库”是“我的存储库管理器”,则可以通过在 Barcode Cluster 1 AAACCTGAGCGTCAAG-1 6 2 AAACCTGAGTACCGGA-1 3 3 AAACCTGCAGCTGCTG-1 6 7 AAACCTGGTCGCGTGT-1 14 11 AAACGGGAGAACTCGG-1 14 部分中首先声明Maven Central存储库来实现:

<repositories>

要解决此配置的依赖性,Maven首先会在您的缓存(<repositories> <!-- first, Maven Central --> <repository> <id>central</id> <name>Central Repository</name> <url>https://repo.maven.apache.org/maven2</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> <!-- then, your own repository --> <repository> <id>my-repository</id> <name>my-repository</name> <url>https://my.repository.org</url> </repository> </repositories> )中查找,然后在Maven Central中查找,最后在您自己的存储库中查找。