settings.xml 997 B

123456789101112131415161718192021222324252627282930313233343536
  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. <activeProfiles>
  6. <activeProfile>github</activeProfile>
  7. </activeProfiles>
  8. <profiles>
  9. <profile>
  10. <id>github</id>
  11. <repositories>
  12. <repository>
  13. <id>central</id>
  14. <url>https://repo1.maven.org/maven2</url>
  15. </repository>
  16. <repository>
  17. <id>github</id>
  18. <url>https://maven.pkg.github.com/Anas-Elgarhy/JColorfulConsole</url>
  19. <snapshots>
  20. <enabled>true</enabled>
  21. </snapshots>
  22. </repository>
  23. </repositories>
  24. </profile>
  25. </profiles>
  26. <servers>
  27. <server>
  28. <id>github</id>
  29. <username>Anas-Elgarhy</username>
  30. <!-- <password>${{ github.token }}</password>-->
  31. </server>
  32. </servers>
  33. </settings>