settings.xml 1022 B

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  5. <interactiveMode>false</interactiveMode>
  6. <servers>
  7. <server>
  8. <id>ossrh</id>
  9. <username>${env.SONATYPE_USERNAME}</username>
  10. <password>${env.SONATYPE_PASSWORD}</password>
  11. </server>
  12. <server>
  13. <id>github</id>
  14. <username>${env.ADOBE_BOT_GITHUB_USERNAME}</username>
  15. <password>${env.ADOBE_BOT_GITHUB_PASSWORD}</password>
  16. </server>
  17. </servers>
  18. <profiles>
  19. <profile>
  20. <id>ossrh</id>
  21. <activation>
  22. <activeByDefault>true</activeByDefault>
  23. </activation>
  24. <properties>
  25. <project.scm.id>github</project.scm.id>
  26. <gpg.executable>gpg</gpg.executable>
  27. <gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase>
  28. </properties>
  29. </profile>
  30. </profiles>
  31. </settings>