Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.48 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <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">
  3.  
  4. <servers>
  5. <server>
  6. <id>snapshots</id>
  7. <username>denisd</username>
  8. <password>cambiar2018</password>
  9. </server>
  10. <server>
  11. <id>releases</id>
  12. <username>denisd</username>
  13. <password>cambiar2018</password>
  14. </server>
  15. <server>
  16. <id>nexus-nucleo</id>
  17. <username>denisd</username>
  18. <password>cambiar2018</password>
  19. </server>
  20. </servers>
  21.  
  22.  
  23. <profiles>
  24.  
  25.  
  26. <profile>
  27. <id>nucleo-repository-3rd-party</id>
  28. <repositories>
  29. <repository>
  30. <id>nucleo-repository-group-3rd-party</id>
  31. <name>Repositorio maven de Núcleo - 3rd Party</name>
  32. <url>http://10.150.16.104/nexus/content/repositories/thirdparty/</url>
  33. </repository>
  34. </repositories>
  35. </profile>
  36.  
  37. <profile>
  38. <id>nucleo-repository-snapshots</id>
  39. <repositories>
  40. <repository>
  41. <id>nucleo-repository-snapshots</id>
  42. <name>Repositorio maven de Núcleo - snapshots</name>
  43. <url>http://10.150.16.104/nexus/content/repositories/snapshots/</url>
  44. </repository>
  45. </repositories>
  46. </profile>
  47.  
  48. <profile>
  49. <id>nucleo-repository</id>
  50. <repositories>
  51. <repository>
  52. <id>nucleo-repository-group</id>
  53. <name>Repositorio maven de Núcleo</name>
  54. <url>http://10.150.16.104/nexus/content/groups/nucleo-repositories-group/</url>
  55. </repository>
  56. </repositories>
  57. </profile>
  58.  
  59. <profile>
  60. <id>downloadSources</id>
  61. <properties>
  62. <downloadSources>true</downloadSources>
  63. <downloadJavadocs>true</downloadJavadocs>
  64. </properties>
  65. </profile>
  66.  
  67. <profile>
  68. <id>jboss-public-repository</id>
  69. <repositories>
  70. <repository>
  71. <id>jboss-public-repository-group</id>
  72. <name>JBoss Public Maven Repository Group</name>
  73. <url>http://10.150.16.104/nexus/content/repositories/jboss-public-repository-group/</url>
  74. <releases>
  75. <enabled>true</enabled>
  76. <updatePolicy>never</updatePolicy>
  77. </releases>
  78. <snapshots>
  79. <enabled>true</enabled>
  80. <updatePolicy>never</updatePolicy>
  81. </snapshots>
  82. </repository>
  83. </repositories>
  84. <pluginRepositories>
  85. <pluginRepository>
  86. <id>jboss-public-repository-group</id>
  87. <name>JBoss Public Maven Repository Group</name>
  88. <url>http://10.150.16.104/nexus/content/repositories/jboss-public-repository-group/</url>
  89. <releases>
  90. <enabled>true</enabled>
  91. <updatePolicy>never</updatePolicy>
  92. </releases>
  93. <snapshots>
  94. <enabled>true</enabled>
  95. <updatePolicy>never</updatePolicy>
  96. </snapshots>
  97. </pluginRepository>
  98. </pluginRepositories>
  99. </profile>
  100. </profiles>
  101. <activeProfiles>
  102. <activeProfile>nucleo-repository-snapshots</activeProfile>
  103. <activeProfile>nucleo-repository</activeProfile>
  104. <activeProfile>nucleo-repository-3rd-party</activeProfile>
  105.  
  106. <activeProfile>jboss-public-repository</activeProfile>
  107. </activeProfiles>
  108. </settings>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement