Advertisement
Guest User

Untitled

a guest
Dec 11th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. <profiles>
  2. <profile>
  3. <id>nexus</id>
  4. <!--Enable snapshots for the built in central repo to direct -->
  5. <!--all requests to nexus via the mirror -->
  6. <repositories>
  7. <repository>
  8. <id>central</id>
  9. <url>http://central</url>
  10. <releases>
  11. <enabled>true</enabled>
  12. </releases>
  13. <snapshots>
  14. <enabled>true</enabled>
  15. <!-- <updatePolicy>always</updatePolicy>-->
  16. <updatePolicy>never</updatePolicy>
  17. </snapshots>
  18. </repository>
  19. </repositories>
  20. <pluginRepositories>
  21. <pluginRepository>
  22. <id>central</id>
  23. <url>http://central</url>
  24. <releases>
  25. <enabled>true</enabled>
  26. </releases>
  27. <snapshots>
  28. <enabled>true</enabled>
  29. <!-- <updatePolicy>always</updatePolicy>-->
  30. <updatePolicy>never</updatePolicy>
  31. </snapshots>
  32. </pluginRepository>
  33. </pluginRepositories>
  34. </profile>
  35. </profiles>
  36. <activeProfiles>
  37. <!--make the profile active all the time -->
  38. <activeProfile>nexus</activeProfile>
  39. </activeProfiles>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement