https://github.com/ICIJ/datashare
Raw File
Tip revision: 563a6caa14ca0e258aca04d176684b884e6d275c authored by Bruno Thomas on 22 April 2020, 08:54:34 UTC
[release] 6.1.3
Tip revision: 563a6ca
maven-release-settings.xml
<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">
  <profiles>
    <profile>
      <id>ossrh</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <properties>
        <gpg.executable>gpg</gpg.executable>
        <gpg.passphrase>${env.RELEASES_GPG_PASS}</gpg.passphrase>
      </properties>
    </profile>
  </profiles>
  <servers>
    <server>
      <id>ossrh</id>
      <username>${env.SERVER_OSSRH_USERNAME}</username>
      <password>${env.SERVER_OSSRH_PASSWORD}</password>
    </server>
  </servers>
</settings>
back to top