123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
- <servers>
- <server>
- <id>sonatype-nexus-snapshots</id>
- <username>${env.SONATYPE_USER}</username>
- <password>${env.SONATYPE_PASSWORD}</password>
- </server>
- <server>
- <id>sonatype-nexus-staging</id>
- <username>${env.SONATYPE_USER}</username>
- <password>${env.SONATYPE_PASSWORD}</password>
- </server>
- </servers>
- <profiles>
- <profile>
- <id>ci</id>
- <repositories>
- <repository>
- <id>sonatype-staging</id>
- <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
- <layout>default</layout>
- <releases>
- <enabled>true</enabled>
- </releases>
- </repository>
- </repositories>
- </profile>
- <profile>
- <id>signing</id>
- <properties>
- <gpg.executable>gpg</gpg.executable>
- <gpg.keyname>${env.GPG_KEY_NAME}</gpg.keyname>
- <gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase>
- </properties>
- </profile>
- </profiles>
- <activeProfiles>
- <activeProfile>ci</activeProfile>
- <activeProfile>signing</activeProfile>
- </activeProfiles>
- </settings>
|