Advertisement
Guest User

Untitled

a guest
Nov 15th, 2018
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.1.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <servers>
  5. <server>
  6. <username>${env.BINTRAY_USER}</username>
  7. <password>${env.BINTRAY_API_KEY}</password>
  8. <id>bintray-sdk</id>
  9. </server>
  10. <server>
  11. <username>name</username>
  12. <password>password</password>
  13. <id>openmrs-repo</id>
  14. </server>
  15. <server>
  16. <username>name</username>
  17. <password>password</password>
  18. <id>openmrs-repo-modules</id>
  19. </server>
  20. <server>
  21. <username>name</username>
  22. <password>password</password>
  23. <id>openmrs-repo-releases</id>
  24. </server>
  25. <server>
  26. <username>name</username>
  27. <password>password</password>
  28. <id>openmrs-repo-snapshots</id>
  29. </server>
  30. </servers>
  31. <profiles>
  32. <profile>
  33. <properties>
  34. <archetypeRepository>http://mavenrepo.openmrs.org/nexus/content/repositories/public</archetypeRepository>
  35. <archetypeCatalog>http://mavenrepo.openmrs.org/nexus/content/repositories/public/archetype-catalog.xml</archetypeCatalog>
  36. </properties>
  37. <repositories>
  38. <repository>
  39. <id>openmrs-repo</id>
  40. <name>OpenMRS Nexus Repository</name>
  41. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  42. </repository>
  43. <repository>
  44. <id>openmrs-repo-thirdparty</id>
  45. <name>OpenMRS Thirdparty Nexus Repository</name>
  46. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/thirdparty</url>
  47. </repository>
  48. <repository>
  49. <id>openmrs-bintray-repo</id>
  50. <name>OpeMRS Maven Bintray Repository</name>
  51. <url>https://dl.bintray.com/openmrs/maven/</url>
  52. </repository>
  53. </repositories>
  54. <pluginRepositories>
  55. <pluginRepository>
  56. <snapshots>
  57. <enabled>false</enabled>
  58. </snapshots>
  59. <id>openmrs-repo</id>
  60. <name>OpenMRS Nexus Repository</name>
  61. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  62. </pluginRepository>
  63. <pluginRepository>
  64. <id>openmrs-bintray-repo</id>
  65. <name>OpeMRS Maven Bintray Repository</name>
  66. <url>https://dl.bintray.com/openmrs/maven/</url>
  67. </pluginRepository>
  68. </pluginRepositories>
  69. <id>openmrs</id>
  70. </profile>
  71. </profiles>
  72. <activeProfiles>
  73. <activeProfile>openmrs</activeProfile>
  74. </activeProfiles>
  75. <pluginGroups>
  76. <pluginGroup>org.openmrs.maven.plugins</pluginGroup>
  77. </pluginGroups>
  78. </settings>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement