You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The nightly SNAPSHOT releases are available on **GitHub Packages**.
327
+
GitHub Packages requires authentication - even for public repositories.
328
+
You need to use a [Personal Access Token (PAT)](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens)
329
+
with `read:packages` permission.
330
+
331
+
#### Maven Setup:
332
+
333
+
Add the authentication part to your `settings.xml` file in `servers`:
334
+
335
+
```xml
336
+
<!--settings.xml-->
337
+
<servers>
338
+
<server>
339
+
<id>github-quickfixj</id>
340
+
<username>USERNAME</username> <!-- Your GitHub username -->
341
+
<password>GITHUB_PAT</password> <!-- Your GitHub PAT -->
342
+
</server>
343
+
</servers>
344
+
```
345
+
346
+
Add the GitHub Packages repository in `repositories` and the desired `SNAPSHOT` version in `dependencies`:
0 commit comments