在 Gradle 中调试 Github 包存储库连接
Debugging Github Packages repository connection in Gradle
我在 Github 中建立了一个私有项目,其中包含一些 Maven 包。我可以在 Github 网站上浏览它们。
按照说明 here 我已经设置了我的 build.gradle 来声明存储库,如下所示:
repositories {
mavenLocal()
maven {
url = "https://maven.pkg.github.com/myAccountName/myRepo"
credentials {
username = System.getenv("GITHUB_USERNAME")
password = System.getenv("GITHUB_PACKAGES_TOKEN")
}
}
}
我已经使用我在 Github 设置中创建的具有 read:packages
权限的用户名和访问令牌设置了系统环境变量。
我声明依赖项的方式与之前将其安装到 mavenLocal()
时的方式相同。但是我从本地 Maven 存储库中删除了它,所以我可以测试它。
无法解析依赖项。但是来自 Gradle 的所有警告都是:
Unable to resolve dependency for ':android@debug/compileClasspath': Could not resolve myGroup:myArtifact:1.0
没有记录有关 Maven 存储库之一无效的警告,但我认为这是可能的问题,因为当包在本地 Maven 存储库中时它工作正常。可能是我指定的不正确,或者凭据无效。
我也试过直接输入字符串用户名和令牌而不是使用环境变量。令牌是全新的,没有过期。
如何确定我与 Github Packages Maven 存储库的连接出了什么问题?有什么办法可以获得更多有用的日志吗?或者您是否发现我的身份验证方式有问题?
从你的问题我可以看出,你的设置看起来是正确的。
看来您只是在查看 Android Studio 提供的错误。 Gradle 自己的错误信息通常更有帮助,所以我建议看看那些。换句话说,我建议尝试从命令行构建项目,例如与:
./gradlew build
根据问题的不同,您会收到不同的错误消息。例如,如果您的 password/token 是错误的,那么您会看到类似这样的内容:
> Could not resolve all files for configuration ':compileClasspath'.
> Could not resolve com.example:my-lib:1.0.0.
Required by:
project :
> Could not resolve com.example:my-lib:1.0.0.
> Could not get resource 'https://maven.pkg.github.com/myAccountName/myRepo/com/example/my-lib/1.0.0/my-lib-1.0.0.pom'.
> Could not GET 'https://maven.pkg.github.com/myAccountName/myRepo/com/example/my-lib/1.0.0/my-lib-1.0.0.pom'. Received status code 401 from server: Unauthorized
注意最后的Received status code 401 from server: Unauthorized
。
但是,如果你的依赖声明是错误的(组、模块名称或版本中的任何一个),那么你会得到这样的错误:
> Could not resolve all files for configuration ':compileClasspath'.
> Could not find com.example:oops-wrong:1.0.0.
Searched in the following locations:
- file:/home/chriki/.m2/repository/com/example/oops-wrong/1.0.0/oops-wrong-1.0.0.pom
- https://maven.pkg.github.com/myAccountName/myRepo/com/example/oops-wrong/1.0.0/oops-wrong-1.0.0.pom
Required by:
project :
当然,如果您之前没有(正确地)uploaded/published所需的包,您也会遇到同样的错误。您可以手动检查它是否存在于 https://maven.pkg.github.com/myAccountName/myRepo/packages
.
其他情况下可能会有其他错误信息。例如,我记得曾见过 403。不幸的是,GitHub 包注册表似乎没有向 Gradle 提供足够的详细信息,因此它可以提供除上述两个之外的其他错误。即使我使用了错误的存储库,我仍然只会得到第二种错误:
> Could not resolve all files for configuration ':compileClasspath'.
> Could not find com.example:my-lib:1.0.0.
Searched in the following locations:
- file:/home/chriki/.m2/repository/com/example/my-lib/1.0.0/my-lib-1.0.0.pom
- https://maven.pkg.github.com/oops-wrong/com/example/my-lib/1.0.0/my-lib-1.0.0.pom
Required by:
project :
更多发现:
- 对于凭据,好像GitHub只看token。用户名似乎并不重要。
- URL 中的存储库的具体名称似乎无关紧要,只要它不为空即可。
回到您的具体问题:部分 Android Studio 错误消息似乎仍然直接来自 Gradle。它说“无法解决”而不是“找不到”。所以这可能是存储库连接的问题。如果您还没有将您的令牌用于其他任何用途,那么您可以在 https://github.com/settings/tokens 处检查 GitHub 是否认为它已被使用(例如,“上周内最后一次使用”)。如果它显示“Never used”,那么你就会知道 Gradle 从未成功连接到 GitHub,你应该仔细检查使用过的令牌或尝试一个新的。或者,您可以先使用 wget
尝试您的凭据:
wget --user myAccountName --password "$GITHUB_PACKAGES_TOKEN" \
https://maven.pkg.github.com/myAccountName/myRepo/com/example/my-lib/1.0.0/my-lib-1.0.0.pom
我在 Github 中建立了一个私有项目,其中包含一些 Maven 包。我可以在 Github 网站上浏览它们。
按照说明 here 我已经设置了我的 build.gradle 来声明存储库,如下所示:
repositories {
mavenLocal()
maven {
url = "https://maven.pkg.github.com/myAccountName/myRepo"
credentials {
username = System.getenv("GITHUB_USERNAME")
password = System.getenv("GITHUB_PACKAGES_TOKEN")
}
}
}
我已经使用我在 Github 设置中创建的具有 read:packages
权限的用户名和访问令牌设置了系统环境变量。
我声明依赖项的方式与之前将其安装到 mavenLocal()
时的方式相同。但是我从本地 Maven 存储库中删除了它,所以我可以测试它。
无法解析依赖项。但是来自 Gradle 的所有警告都是:
Unable to resolve dependency for ':android@debug/compileClasspath': Could not resolve myGroup:myArtifact:1.0
没有记录有关 Maven 存储库之一无效的警告,但我认为这是可能的问题,因为当包在本地 Maven 存储库中时它工作正常。可能是我指定的不正确,或者凭据无效。
我也试过直接输入字符串用户名和令牌而不是使用环境变量。令牌是全新的,没有过期。
如何确定我与 Github Packages Maven 存储库的连接出了什么问题?有什么办法可以获得更多有用的日志吗?或者您是否发现我的身份验证方式有问题?
从你的问题我可以看出,你的设置看起来是正确的。
看来您只是在查看 Android Studio 提供的错误。 Gradle 自己的错误信息通常更有帮助,所以我建议看看那些。换句话说,我建议尝试从命令行构建项目,例如与:
./gradlew build
根据问题的不同,您会收到不同的错误消息。例如,如果您的 password/token 是错误的,那么您会看到类似这样的内容:
> Could not resolve all files for configuration ':compileClasspath'.
> Could not resolve com.example:my-lib:1.0.0.
Required by:
project :
> Could not resolve com.example:my-lib:1.0.0.
> Could not get resource 'https://maven.pkg.github.com/myAccountName/myRepo/com/example/my-lib/1.0.0/my-lib-1.0.0.pom'.
> Could not GET 'https://maven.pkg.github.com/myAccountName/myRepo/com/example/my-lib/1.0.0/my-lib-1.0.0.pom'. Received status code 401 from server: Unauthorized
注意最后的Received status code 401 from server: Unauthorized
。
但是,如果你的依赖声明是错误的(组、模块名称或版本中的任何一个),那么你会得到这样的错误:
> Could not resolve all files for configuration ':compileClasspath'.
> Could not find com.example:oops-wrong:1.0.0.
Searched in the following locations:
- file:/home/chriki/.m2/repository/com/example/oops-wrong/1.0.0/oops-wrong-1.0.0.pom
- https://maven.pkg.github.com/myAccountName/myRepo/com/example/oops-wrong/1.0.0/oops-wrong-1.0.0.pom
Required by:
project :
当然,如果您之前没有(正确地)uploaded/published所需的包,您也会遇到同样的错误。您可以手动检查它是否存在于 https://maven.pkg.github.com/myAccountName/myRepo/packages
.
其他情况下可能会有其他错误信息。例如,我记得曾见过 403。不幸的是,GitHub 包注册表似乎没有向 Gradle 提供足够的详细信息,因此它可以提供除上述两个之外的其他错误。即使我使用了错误的存储库,我仍然只会得到第二种错误:
> Could not resolve all files for configuration ':compileClasspath'.
> Could not find com.example:my-lib:1.0.0.
Searched in the following locations:
- file:/home/chriki/.m2/repository/com/example/my-lib/1.0.0/my-lib-1.0.0.pom
- https://maven.pkg.github.com/oops-wrong/com/example/my-lib/1.0.0/my-lib-1.0.0.pom
Required by:
project :
更多发现:
- 对于凭据,好像GitHub只看token。用户名似乎并不重要。
- URL 中的存储库的具体名称似乎无关紧要,只要它不为空即可。
回到您的具体问题:部分 Android Studio 错误消息似乎仍然直接来自 Gradle。它说“无法解决”而不是“找不到”。所以这可能是存储库连接的问题。如果您还没有将您的令牌用于其他任何用途,那么您可以在 https://github.com/settings/tokens 处检查 GitHub 是否认为它已被使用(例如,“上周内最后一次使用”)。如果它显示“Never used”,那么你就会知道 Gradle 从未成功连接到 GitHub,你应该仔细检查使用过的令牌或尝试一个新的。或者,您可以先使用 wget
尝试您的凭据:
wget --user myAccountName --password "$GITHUB_PACKAGES_TOKEN" \
https://maven.pkg.github.com/myAccountName/myRepo/com/example/my-lib/1.0.0/my-lib-1.0.0.pom