| <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 https://maven.apache.org/xsd/settings-1.0.0.xsd"> |
| <servers> |
| <server> |
| <id>github</id> |
| <username>${env.GITHUB_ACTOR}</username> |
| <password>${env.GITHUB_TOKEN}</password> |
| </server> |
| </servers> |
| |
| <profiles> |
| <profile> |
| <id>local-repo</id> |
| <repositories> |
| <repository> |
| <id>central</id> |
| <url>https://repo.maven.apache.org/maven2</url> |
| <releases> |
| <enabled>true</enabled> |
| </releases> |
| <snapshots> |
| <enabled>false</enabled> |
| </snapshots> |
| </repository> |
| <repository> |
| <id>staged-releases</id> |
| <url>https://repository.apache.org/content/groups/staging/</url> |
| </repository> |
| </repositories> |
| <pluginRepositories> |
| <pluginRepository> |
| <id>staged-releases</id> |
| <url>https://repository.apache.org/content/groups/staging/</url> |
| </pluginRepository> |
| </pluginRepositories> |
| </profile> |
| </profiles> |
| |
| <activeProfiles> |
| <activeProfile>local-repo</activeProfile> |
| </activeProfiles> |
| </settings> |