You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

settings-read-github-packages.xml 1.2KB

12345678910111213141516171819202122232425
  1. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">
  3. <!--
  4. GitHub Actions currently requires authentication even for read-only access to Maven artifacts stored in GitHub
  5. Packages. There is no such thing as public package repositories without authentication. See here:
  6. https://github.community/t/how-to-allow-unauthorised-read-access-to-github-packages-maven-repository/115517/4
  7. How to use it:
  8. https://github.com/jcansdale-test/maven-consume
  9. How to XML-encode an access token online (no problem to use the website, it is meant for public access anyway):
  10. https://coderstoolbox.net/string/#!encoding=xml&action=encode&charset=none
  11. -->
  12. <servers>
  13. <server>
  14. <id>github</id>
  15. <username>kriegaex</username>
  16. <!-- Public access token with 'read:packages' scope -->
  17. <password>&#103;&#104;&#112;&#95;&#68;&#74;&#97;&#71;&#119;&#108;&#80;&#75;&#55;&#116;&#68;&#55;&#102;&#73;&#51;&#107;&#103;&#111;&#109;&#71;&#100;&#78;&#115;&#86;&#105;&#88;&#67;&#100;&#50;&#98;&#50;&#55;&#74;&#104;&#66;&#77;</password>
  18. </server>
  19. </servers>
  20. </settings>