Advertisement
Guest User

Untitled

a guest
Apr 11th, 2016
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  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.  
  6. <pluginGroups>
  7. <pluginGroup>org.openmrs.maven.plugins</pluginGroup>
  8. </pluginGroups>
  9.  
  10. <profiles>
  11. <profile>
  12. <id>OpenMRS</id>
  13. <activation>
  14. <activeByDefault>true</activeByDefault>
  15. </activation>
  16. <properties>
  17. <archetypeCatalog>http://mavenrepo.openmrs.org/nexus/content/repositories/public/archetype-catalog.xml</archetypeCatalog>
  18. <archetypeRepository>http://mavenrepo.openmrs.org/nexus/content/repositories/public</archetypeRepository>
  19. </properties>
  20. <repositories>
  21. <repository>
  22. <id>openmrs-repo</id>
  23. <name>OpenMRS Nexus Repository</name>
  24. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  25. </repository>
  26. </repositories>
  27. <pluginRepositories>
  28. <pluginRepository>
  29. <id>openmrs-repo</id>
  30. <name>OpenMRS Nexus Repository</name>
  31. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  32. <snapshots>
  33. <enabled>false</enabled>
  34. </snapshots>
  35. </pluginRepository>
  36. </pluginRepositories>
  37. </profile>
  38. </profiles>
  39.  
  40. <servers>
  41. <server>
  42. <id>openmrs-repo-releases</id>
  43. <username></username>
  44. <password></password>
  45. </server>
  46. <server>
  47. <id>openmrs-repo</id>
  48. <username></username>
  49. <password></password>
  50. </server>
  51. <server>
  52. <id>openmrs-repo-modules</id>
  53. <username></username>
  54. <password></password>
  55. </server>
  56. <server>
  57. <id>openmrs-repo-snapshots</id>
  58. <username></username>
  59. <password></password>
  60. </server>
  61. </servers>
  62.  
  63. </settings>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement