Player's Utilities
-
Clone the repository
-
Acquire a Github personal access token with at least read:packages scope.
-
Modify the
~/.m2/settings.xml
file with GITHUB_USERNAME and GITHUB_TOKEN acquired in step 2.<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 https://maven.apache.org/xsd/settings-1.2.0.xsd"> ... <servers> ... <server> <id>ghpkg-SimpleLanguageLoader</id> <username>GITHUB_USERNAME</username> <password>GITHUB_TOKEN</password> </server> <server> <id>ghpkg-SimpleLanguageLoader</id> <username>GITHUB_USERNAME</username> <password>GITHUB_TOKEN</password> </server> <server> <id>ghpkg-SimpleLanguageLoader</id> <username>GITHUB_USERNAME</username> <password>GITHUB_TOKEN</password> </server> </servers> </settings>
-
Run the build and publish (locally) with maven.