A Maven package for core components of a knowledge-based configuration environment
To use the package, please add the below script in the settings.xml file.
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>github-maven-repository</id>
<username>USERNAME</username>
<password>TOKEN</password>
</server>
</servers>
</settings>
Replacing USERNAME with your GitHub username, and TOKEN with your personal access token
(see Creating a personal access token). Note: your token must have the read:packages
scope.
Add also the below script in the pom.xml file:
<profiles>
<profile>
<id>github-maven-repository</id>
<repositories>
<repository>
<id>github-maven-repository</id>
<url>https://maven.pkg.github.com/manleviet/*</url>
</repository>
</repositories>
</profile>
</profiles>