我想在我的pom.xml中添加一个依赖项来从github存储库中检出一个libray。
我的pom文件是:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.nvtien.test</groupId>
<artifactId>tester</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>com.levonk</groupId>
<artifactId>codequality</artifactId>
<version>1.0.4</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>cemerick-snapshots</id>
<url>https://raw.github.com/cemerick/cemerick-mvn-repo/snapshots</url>
</repository>
</repositories></project>
这是github存储库:
https://github.com/levonk/pub-maven-repo
我的本地~m2 / settings.xml
<servers>
<server>
<id>github</id>
<username>XXXX</username>
<password>XXXX</password>
</server></servers>
我发现了maven log的错误:
[错误]无法在项目测试人员上执行目标:无法解决项目com.nvtien.test的依赖关系:tester:jar:0.0.1-SNAPSHOT: github.com/cemerick/cemerick-mvn-repo/snapshots缓存在本地存储库中,在更新之前不会重新尝试解析 - &GT; [帮助1]
我的问题是:出了什么问题?为什么maven无法下载codequality-1.0.4.jar?
答案 0 :(得分:1)
请添加以下存储库:
<repository>
<id>https-levonk</id>
<url>https://github.com/levonk/pub-maven-repo/tree/master/release/</url>
</repository>
BTW,我发现只有1.0.8(和1.0.9)版本。
https://github.com/levonk/pub-maven-repo/tree/master/release/com/levonk/codequality
请添加以下依赖项,它将适用于您:
<dependency>
<groupId>com.levonk</groupId>
<artifactId>codequality</artifactId>
<version>1.0.8</version>
</dependency>