Advertisement
Guest User

Untitled

a guest
Dec 11th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 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. <mirrors>
  7. <mirror>
  8. <!--This sends everything else to /public -->
  9. <id>nexus</id>
  10. <mirrorOf>*</mirrorOf>
  11. <url>http://nexus.pcms.local/repository/nexus</url>
  12. </mirror>
  13. </mirrors>
  14. <!-- Comment this section if not in UK office -->
  15. <proxies>
  16. <proxy>
  17. <id>myproxy</id>
  18. <active>true</active>
  19. <protocol>http</protocol>
  20. <host>10.210.40.36</host>
  21. <port>3128</port>
  22. <nonProxyHosts>*.pcms.local</nonProxyHosts>
  23. </proxy>
  24. </proxies>
  25. <profiles>
  26. <profile>
  27. <id>nexus</id>
  28. <!--Enable snapshots for the built in central repo to direct -->
  29. <!--all requests to nexus via the mirror -->
  30. <repositories>
  31. <repository>
  32. <id>central</id>
  33. <url>http://central</url>
  34. <releases>
  35. <enabled>true</enabled>
  36. </releases>
  37. <snapshots>
  38. <enabled>true</enabled>
  39. <!-- <updatePolicy>always</updatePolicy>-->
  40. <updatePolicy>never</updatePolicy>
  41. </snapshots>
  42. </repository>
  43. </repositories>
  44. <pluginRepositories>
  45. <pluginRepository>
  46. <id>central</id>
  47. <url>http://central</url>
  48. <releases>
  49. <enabled>true</enabled>
  50. </releases>
  51. <snapshots>
  52. <enabled>true</enabled>
  53. <!-- <updatePolicy>always</updatePolicy>-->
  54. <updatePolicy>never</updatePolicy>
  55. </snapshots>
  56. </pluginRepository>
  57. </pluginRepositories>
  58. </profile>
  59. </profiles>
  60. <activeProfiles>
  61. <!--make the profile active all the time -->
  62. <activeProfile>nexus</activeProfile>
  63. </activeProfiles>
  64. </settings>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement