我将Maven人工制品上传到GitHub Package Registry (Beta),并希望将其添加为Maven依赖项。我已经在Regestry-Beta中,并为我的示例HalloMaven项目激活了它。 mvn deploy
也是成功的,因此可以在此处 public 使用该工件:
https://github.com/TobseF/HelloMaven/packages
但是如何将其作为Maven依赖项包括在内?
我尝试使用此pom.xml
将其添加到新的示例项目中:
<groupId>de.tfr.test</groupId>
<artifactId>maven-repo-test</artifactId>
<version>1.0-SNAPSHOT</version>
<repositories>
<repository>
<id>github</id>
<name>GitHub TobseF Apache Maven Packages</name>
<url>https://github.com/TobseF/HelloMaven/packages</url>
<!-- also tried:
<url>https://maven.pkg.github.com/HelloMaven/</url> -->
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>github.tobsef</groupId>
<artifactId>hello-maven</artifactId>
<version>1.2.1</version>
</dependency>
</dependencies>
但是依赖性无法解决。
奇怪的是,artifactId
是github.tobsef.hello-maven
,不包含pom中指定的hello-maven
。但是我不知道为什么要附加github.tobsef
以及存储库URL是否正确。
官方GitHub Configuring Apache Maven for use with GitHub Package Registry仅显示了如何使用凭据推送它。但是我的仓库是公开的,不需要身份验证。
HalloMaven 示例的设置:
settings.xml
<profiles>
<profile>
<id>github</id>
<repositories>
<repository>
<id>github</id>
<name>GitHub TobseF Apache Maven Packages</name>
<url>https://maven.pkg.github.com/TobseF</url>
</repository>
</repositories>
</profile>
</profiles>
<servers>
<server>
<id>github</id>
<username>${env.GITHUB_USERNAME}</username>
<password>${env.GITHUB_TOKEN}</password>
</server>
</servers>
pom.xml
<groupId>github.tobsef</groupId>
<artifactId>hello-maven</artifactId>
<version>1.2.1</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
</plugin>
</plugins>
</build>
<properties>
<github.global.server>github</github.global.server>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>11</java.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub TobseF Apache Maven Packages</name>
<url>https://maven.pkg.github.com/TobseF/HelloMaven</url>
</repository>
</distributionManagement>
deploy.yml
name: Maven Deploy
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Maven build
run: mvn --file pom.xml package
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Deploy to Github Package Registry
env:
GITHUB_USERNAME: ${{ secrets.GITHUB_USERNAME }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mvn --settings settings.xml --file pom.xml deploy
结果是Could not find artifact github.tobsef:hello-maven:pom:1.2.1 in github (https://github.com/TobseF/HelloMaven/packages)
。
任何想法如何设置部署以部署正确的工件以及如何将其添加为依赖项?
答案 0 :(得分:0)
好的,我发现了如何正确配置它。
您可以在此处查看带有有效GitHub Actions CI和GitHub Package Registry的示例项目:
?HelloMaven
要查看如何包含依赖项,请检查:
?GitHub-plugin-registry-example Template
诀窍是在全局Maven settings.xml
中向GitHub API添加身份验证。
<servers>
<server>
<id>github</id>
<username>YOUR_USERNAME</username>
<password>YOUR_AUTH_TOKEN</password>
</server>
</servers>
用您的GitHub登录名替换YOUR_USERNAME
。
将YOUR_AUTH_TOKEN
替换为生成的GitHub个人访问令牌:
GitHub > 设置> 开发人员设置> 个人访问令牌> 生成新令牌:
令牌至少需要read:packages
范围。
否则,您将获得Not authorized
异常。
目前尚不清楚读取包也需要此auth。特别是因为该jar无需包装页面上的任何登录即可使用: https://github.com/TobseF/HelloMaven/packages
所以有点讨厌,因为我们必须添加<server><id>github</id>...
并希望其他人也为repository
提供github
id。否则,我们必须为每个github依赖项添加一个服务器配置。
请记住,每个GitHub存储库都是其自己的Maven存储库。因此,没有像Maven Central这样的全局注册表。每个依赖项都必须提供自己的repository
链接声明。
但是与GitHub Actions CI结合使用,这是一个非常不错的选择,没有任何第三方插件。