2021-05-08 00:52:07 +02:00
|
|
|
<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">
|
|
|
|
|
|
|
|
<activeProfiles>
|
|
|
|
<activeProfile>github</activeProfile>
|
|
|
|
</activeProfiles>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>github</id>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>central</id>
|
|
|
|
<url>https://repo1.maven.org/maven2</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
|
|
|
|
<repository>
|
|
|
|
<id>github</id>
|
|
|
|
<name>GitHub sventorben Apache Maven Packages</name>
|
2021-05-08 00:58:55 +02:00
|
|
|
<url>https://maven.pkg.github.com/sventorben/keycloak-restrict-client-auth</url>
|
2021-05-08 00:52:07 +02:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
<servers>
|
|
|
|
<server>
|
|
|
|
<id>github</id>
|
|
|
|
<username>sventorben</username>
|
|
|
|
<password>${env.GITHUB_TOKEN}</password>
|
|
|
|
</server>
|
|
|
|
</servers>
|
|
|
|
</settings>
|