mvn install package из реестра пакетов GitHub

Я выполнил шаги, приведенные в этом документе, для развертывания пакета в реестре пакетов 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

2 ответа

Согласно документации, на которую вы указали, URL-адрес репозитория maven должен включать имя вашего репозитория GitHub, т.е.github_package_registry. Итак, что вам нужно в вашем 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>

По какой-то причине не смотрит в нужное репо, попробуйте поместить это вверху вашего settings.yml

<repository>
       <id>github</id>
       <name>GitHub ashishchopra Apache Maven Packages</name>
       <url>https://maven.pkg.github.com/ashishchopra</url>
</repository>
Другие вопросы по тегам