The Koppeltaal PoC implementation of a Module. This currently only supports a SHOF launch.
mvn spring-boot:run -Dserver.port=8080
Koppeltaal 2.0 uses shared libraries as certain functionality (e.g. JWKS or SMART Backend Services)
are used in many components. These shared libraries are published
to GitHub Packages.
In order to download these, you'll need a GitHub
Personal Access Token
with at least the read:packages
scope.
After you have this token, you must add GitHub as a Maven server
to your ~/.m2/settings.xml
.
The <server>
tag should be added like this, replace the username and password:
<server>
<id>github</id>
<username>{{YOUR_GITHUB_USERNAME}}</username>
<password>{{YOUR_GITHUB_PERSONAL_ACCESS_TOKEN}}</password>
</server>