3

我已经按照本文档中给出的步骤在 GitHub 包注册表上部署了一个包,我能够成功部署一个包。可以在这里看到。

现在我正在尝试将其作为依赖项安装在另一个项目中。如上面的链接中给出的,我在我的 pom 文件中添加了这个依赖项。

<dependency>
  <groupId>com.github.ashishchopra/github_package_registry</groupId>
  <artifactId>group-upload.artifct-upload</artifactId>
  <version>0.0.1</version>
</dependency>

这显然给了我这个错误:

[ERROR] 'dependencies.dependency.groupId' for com.github.ashishchopra/github_package_registry:group-upload.artifct-upload:jar with value 'com.github.ashishchopra/github_package_registry' does not match a valid id pattern.

现在我/在 groupId 中删除了之前的部分并进行了如下依赖:

<dependency>
    <groupId>github_package_registry</groupId>
    <artifactId>group-upload.artifct-upload</artifactId>
    <version>0.0.1</version>
</dependency>

现在我收到此错误:

Downloading: https://maven.pkg.github.com/ashishchopra/github_package_registry/group-upload.artifct-upload/0.0.1/group-upload.artifct-upload-0.0.1.pom
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.275 s
[INFO] Finished at: 2019-10-10T19:47:42+05:30
[INFO] Final Memory: 18M/67M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project artifct-download: Could not resolve dependencies 
for project group-download:artifct-download:jar:0.0.1-SNAPSHOT: Failed to collect dependencies at github_package_registry:group-upload.artifct-upload:jar:0.0.1: Failed to read artifact descriptor for github_package_registry:group-upload.artifct-upload:jar:0.0.1: Could not transfer artifact github_package_registry:group-upload.artifct-upload:pom:0.0.1 from/to github (https://maven.pkg.github.com/ashishchopra): Failed to transfer file: https://maven.pkg.github.com/ashishchopra/github_package_registry/group-upload.artifct-upload/0.0.1/group-upload.artifct-upload-0.0.1.pom. Return code is: 400 , ReasonPhrase:Bad Request. -> [Help 1]

我还尝试groupId.从依赖项中删除部分 artifactId 并使其如下所示:

<dependency>
    <groupId>github_package_registry</groupId>
    <artifactId>artifct-upload</artifactId>
    <version>0.0.1</version>
</dependency>

这次我收到了这个错误:

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 6.417 s
[INFO] Finished at: 2019-10-10T19:52:08+05:30
[INFO] Final Memory: 18M/67M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project artifct-download: Could not resolve dependencies for project group-download:artifct-download:jar:0.0.1-SNAPSHOT: Could not find artifact github_package_registry:artifct-upload:jar:0.0.1 in central (https://repo1.maven.org/maven2) -> 
[Help 1]

因此,没有组合,它似乎正在工作。

我的 ~/.m2/settings.yml 文件的内容:

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                  http://maven.apache.org/xsd/settings-1.0.0.xsd">

<activeProfiles>
    <activeProfile>github</activeProfile>
</activeProfiles>



<profiles>
    <profile>
        <id>github</id>
        <repositories>
            <repository>
                <id>central</id>
                <url>https://repo1.maven.org/maven2</url>
                <releases><enabled>true</enabled></releases>
                <snapshots><enabled>true</enabled></snapshots>
            </repository>
            <repository>
                <id>github</id>
                <name>GitHub ashishchopra Apache Maven Packages</name>
                <url>https://maven.pkg.github.com/ashishchopra</url>
            </repository>
        </repositories>
    </profile>
</profiles>

<servers>
    <server>
        <id>github</id>
        <username>ashishchopra</username>
        <password>XXXX</password>
    </server>
</servers>

这些是他们文档中的直接步骤,没什么特别的,但我仍然无法使其工作。

事实上 pom 和 jar 文件存在于这个链接

https://maven.pkg.github.com/ashishchopra/github_package_registry/group-upload.artifct-upload/0.0.1/artifct-upload-0.0.1.pom

https://maven.pkg.github.com/ashishchopra/github_package_registry/group-upload.artifct-upload/0.0.1/artifct-upload-0.0.1.jar

4

2 回答 2

2

根据您指向的文档github_package_registry,maven 存储库的 URL 应包含您的 GitHub 存储库的名称,即. 这就是您在 settings.xml 中所需要的:

<repositories>
  <repository>
    <id>central</id>
    <url>https://repo1.maven.org/maven2</url>
    <releases><enabled>true</enabled></releases>
    <snapshots><enabled>false</enabled></snapshots>
  </repository>
  <repository>
    <id>github</id>
    <url>https://maven.pkg.github.com/ashishchopra/github_package_registry</url>
  </repository>
</repositories>

在您的 pom.xml 中,只需使用GitHub Packages 页面中描述的依赖项:

<dependency>
  <groupId>group-upload</groupId>
  <artifactId>artifct-upload</artifactId>
  <version>0.0.1</version>
</dependency>
于 2019-11-16T16:45:50.173 回答
0

由于某种原因没有在正确的仓库中查找,请尝试将其放在 settings.yml 的顶部

<repository>
       <id>github</id>
       <name>GitHub ashishchopra Apache Maven Packages</name>
       <url>https://maven.pkg.github.com/ashishchopra</url>
</repository>
于 2019-10-10T23:22:01.293 回答