Advertisement
efrenv

Untitled

Nov 19th, 2019
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  6.  
  7. <localRepository>d:\Profiles\gevillamagua\.m2\repository</localRepository>
  8.  
  9. <mirrors>
  10. <mirror>
  11. <id>nexus</id>
  12. <url>http://localhost:8081/nexus/content/groups/public</url>
  13. <mirrorOf>central</mirrorOf>
  14. </mirror>
  15. </mirrors>
  16.  
  17. <servers>
  18. <server>
  19. <id>nexus-snapshots</id>
  20. <username>admin</username>
  21. <password>admin123</password>
  22. </server>
  23. <server>
  24. <id>nexus-releases</id>
  25. <username>admin</username>
  26. <password>admin123</password>
  27. </server>
  28. </servers>
  29.  
  30.  
  31. <profiles>
  32.  
  33. <profile>
  34. <id>localnexus_profile</id>
  35. <repositories>
  36.  
  37. <repository>
  38. <id>snapshots</id>
  39. <name>Local Nexus Snapshots</name>
  40. <releases>
  41. <enabled>false</enabled>
  42. <updatePolicy>always</updatePolicy>
  43. <checksumPolicy>warn</checksumPolicy>
  44. </releases>
  45. <snapshots>
  46. <enabled>true</enabled>
  47. <updatePolicy>never</updatePolicy>
  48. <checksumPolicy>fail</checksumPolicy>
  49. </snapshots>
  50. <url>http://127.0.0.1:8081/nexus/content/repositories/snapshots/</url>
  51. <layout>default</layout>
  52. </repository>
  53.  
  54. <repository>
  55. <id>releases</id>
  56. <name>Local Nexus Releases</name>
  57. <releases>
  58. <enabled>true</enabled>
  59. <updatePolicy>always</updatePolicy>
  60. <checksumPolicy>warn</checksumPolicy>
  61. </releases>
  62. <snapshots>
  63. <enabled>false</enabled>
  64. <updatePolicy>never</updatePolicy>
  65. <checksumPolicy>fail</checksumPolicy>
  66. </snapshots>
  67. <url>http://127.0.0.1:8081/nexus/content/repositories/releases/</url>
  68. <layout>default</layout>
  69. </repository>
  70.  
  71. </repositories>
  72. <properties>
  73. <JAVA_HOME>D:\SoftwareInstalado\Java\jdk1.8.0_111</JAVA_HOME>
  74. </properties>
  75.  
  76.  
  77.  
  78. </profile>
  79. </profiles>
  80.  
  81. <activeProfiles>
  82. <activeProfile>localnexus_profile</activeProfile>
  83. </activeProfiles>
  84.  
  85. </settings>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement