假设我在一个 url 上托管一个 JAR 文件,例如:
https://raw.githubusercontent.com/async-java/jars/master/x.jar
我怎样才能告诉 Maven 使用这个 url 而不是默认的(到 Maven Central)?
<dependencies>
<dependency>
<groupId>com.my</groupId>
<artifactId>commons-deps</artifactId>
<type>pom</type>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>...</groupId>
<artifactId>...</artifactId>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
我假设在其中一个 xml 配置中的某个地方我们可以告诉 Maven 使用上面的 URL 吗?有人知道这样做的正确方法吗?
如果不清楚——我不想托管整个 Maven 存储库——我只想提供一个 .jar 文件。
侃侃尔雅
慕丝7291255
相关分类