2015-09-25 20:02:55 +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">
|
|
|
|
<localRepository/>
|
|
|
|
<interactiveMode/>
|
|
|
|
<usePluginRegistry/>
|
|
|
|
<offline/>
|
2018-09-02 12:15:45 +02:00
|
|
|
<pluginGroups>
|
|
|
|
<pluginGroup>org.sonarsource.scanner.maven</pluginGroup>
|
|
|
|
</pluginGroups>
|
2015-09-25 20:02:55 +02:00
|
|
|
<servers>
|
|
|
|
<server>
|
2017-02-24 20:00:01 +01:00
|
|
|
<id>ossrh</id>
|
2015-09-25 20:02:55 +02:00
|
|
|
<username>${env.CI_DEPLOY_USERNAME}</username>
|
|
|
|
<password>${env.CI_DEPLOY_PASSWORD}</password>
|
|
|
|
</server>
|
|
|
|
</servers>
|
|
|
|
<mirrors/>
|
|
|
|
<proxies/>
|
2017-01-27 20:46:58 -03:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<properties>
|
|
|
|
<gpg.keyname>${env.CI_SIGN_KEYNAME}</gpg.keyname>
|
|
|
|
<gpg.passphrase>${env.CI_SIGN_PASSPHRASE}</gpg.passphrase>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2015-09-25 20:02:55 +02:00
|
|
|
<activeProfiles/>
|
2017-01-27 20:46:58 -03:00
|
|
|
</settings>
|