Files
spring-guice/.mvn/settings.xml
2024-07-12 16:58:18 +01:00

46 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<settings>
<profiles>
<profile>
<id>release</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.passphrase>${env.passphrase}</gpg.passphrase>
</properties>
</profile>
</profiles>
<servers>
<server>
<id>sonatype-nexus-staging</id>
<username>${env.sonatype_username}</username>
<password>${env.sonatype_password}</password>
</server>
<server>
<id>repo.spring.io</id>
<username>${env.spring_username}</username>
<password>${env.spring_password}</password>
</server>
<server>
<id>spring-libs-milestones</id>
<username>${env.spring_username}</username>
<password>${env.spring_password}</password>
</server>
<server>
<id>spring-libs-snapshots</id>
<username>${env.spring_username}</username>
<password>${env.spring_password}</password>
</server>
<server>
<id>spring-libs-releases</id>
<username>${env.spring_username}</username>
<password>${env.spring_password}</password>
</server>
<server>
<id>spring-libs-plugins</id>
<username>${env.spring_username}</username>
<password>${env.spring_password}</password>
</server>
</servers>
</settings>