我对maven有依赖问题。我曾经有位于 Maven 中心的撒克逊 8.7。然后,我不得不升级到最新的 saxon-b 9.1.0.0,它只是部分在 maven Central 上。
这是我的依赖项的片段:
<dependency>
<groupId>net.sourceforge.saxon</groupId>
<artifactId>saxon</artifactId>
<version>9.1.0.8</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.saxon</groupId>
<artifactId>saxon-dom</artifactId>
<version>9.1.0.8</version>
<scope>runtime</scope>
</dependency>
第一个工件“saxon”在 maven central 上可用,但第二个工件“saxon-dom”。这是我想要的神器。
我可以告诉 maven 下载“jar”文件还是我必须下载 jar 并将其在本地发布到我的 maven 存储库以将其用作依赖项?