mvn.settings 740 B

12345678910111213141516171819202122232425
  1. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
  4. http://maven.apache.org/xsd/settings-1.0.0.xsd">
  5. <servers>
  6. <server>
  7. <id>ossrh</id>
  8. <username>${env.ANDROID_SONATYPE_USERNAME}</username>
  9. <password>${env.ANDROID_SONATYPE_PASSWORD}</password>
  10. </server>
  11. </servers>
  12. <profiles>
  13. <profile>
  14. <id>ossrh</id>
  15. <activation>
  16. <activeByDefault>true</activeByDefault>
  17. </activation>
  18. <properties>
  19. <gpg.executable>gpg</gpg.executable>
  20. <gpg.passphrase></gpg.passphrase>
  21. </properties>
  22. </profile>
  23. </profiles>
  24. </settings>