Fork of https://github.com/hub4j/github-api.
To publish the fork to GitHub packages:
- Create/modify
~/.m2/settings.xmlto contain the following:
<settings>
<!--... -->
<activeProfiles>
<activeProfile>github</activeProfile>
</activeProfiles>
<profiles>
<profile>
<id>github</id>
<repositories>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/progressorhq/*</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
<servers>
<server>
<id>github</id>
<username>*YOUR_USERNAME*</username>
<password>*YOUR_GITHUB_TOKEN*</password>
</server>
</servers>
</settings>- Invoke
./mvnw deployfrom the project root.