Guest User

Untitled

a guest
May 5th, 2020
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.1.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <distributionManagement>
  5. <repository>
  6. <id>snapshots</id>
  7. <url>http://maven-repo.abc.net:8081/artifactory/libs-release</url>
  8. </repository>
  9. </distributionManagement>
  10.  
  11. <servers>
  12. <server>
  13. <username>admin</username>
  14. <password>convo@secure</password>
  15. <id>central</id>
  16. </server>
  17. <server>
  18. <username>admin</username>
  19. <password>convo@secure</password>
  20. <id>snapshots</id>
  21. </server>
  22. </servers>
  23.  
  24. <profiles>
  25. <profile>
  26. <repositories>
  27. <repository>
  28. <snapshots>
  29. <enabled>false</enabled>
  30. </snapshots>
  31. <id>central</id>
  32. <name>libs-release</name>
  33. <url>http://maven-repo.abc.net:8081/artifactory/libs-release</url>
  34. </repository>
  35. <repository>
  36. <snapshots />
  37. <id>snapshots</id>
  38. <name>libs-snapshot</name>
  39. <url>http://maven-repo.abc.net:8081/artifactory/libs-snapshot</url>
  40. </repository>
  41. </repositories>
  42. <pluginRepositories>
  43. <pluginRepository>
  44. <snapshots>
  45. <enabled>false</enabled>
  46. </snapshots>
  47. <id>central</id>
  48. <name>libs-release</name>
  49. <url>http://maven-repo.abc.net:8081/artifactory/libs-release</url>
  50. </pluginRepository>
  51. <pluginRepository>
  52. <snapshots />
  53. <id>snapshots</id>
  54. <name>libs-snapshot</name>
  55. <url>http://maven-repo.abc.net:8081/artifactory/libs-snapshot</url>
  56. </pluginRepository>
  57. </pluginRepositories>
  58. <id>artifactory</id>
  59. </profile>
  60. </profiles>
  61. <activeProfiles>
  62. <activeProfile>artifactory</activeProfile>
  63. </activeProfiles>
  64. </settings>
Add Comment
Please, Sign In to add comment