Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
  4. http://maven.apache.org/xsd/settings-1.0.0.xsd">
  5.  
  6. <activeProfiles>
  7. <activeProfile>github</activeProfile>
  8. </activeProfiles>
  9.  
  10. <profiles>
  11. <profile>
  12. <id>github</id>
  13. <repositories>
  14. <repository>
  15. <id>central</id>
  16. <url>https://repo1.maven.org/maven2</url>
  17. <releases><enabled>true</enabled></releases>
  18. <snapshots><enabled>true</enabled></snapshots>
  19. </repository>
  20. <repository>
  21. <id>github</id>
  22. <name>GitHub OWNER Apache Maven Packages</name>
  23. <url>https://maven.pkg.github.com/OWNER</url>
  24. </repository>
  25. <repository>
  26. <id>github-Towny</id>
  27. <url>https://maven.pkg.github.com/TownyAdvanced/Towny</url>
  28. </repository>
  29. </repositories>
  30. </profile>
  31. </profiles>
  32.  
  33. <servers>
  34. <server>
  35. <id>github</id>
  36. <username>=username</username> <!-- Purposely redacted-->
  37. <password>token</password> <!-- Purposely redacted-->
  38. </server>
  39. </servers>
  40. </settings>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement