Advertisement
Guest User

Untitled

a guest
Feb 16th, 2025
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. pluginManagement {
  2. repositories {
  3. gradlePluginPortal() // This is the most important line!
  4. maven { url "https://maven.architectury.dev/" }
  5. maven { url "https://maven.fabricmc.net/" }
  6. mavenCentral() // Often needed as well
  7. maven {
  8. name = 'MinecraftForge'
  9. url = 'https://maven.minecraftforge.net/'
  10. }
  11. maven { url = 'https://maven.parchmentmc.org' }
  12. }
  13. }
  14.  
  15. dependencyResolutionManagement {
  16. repositories {
  17. maven { url "https://maven.minecraftforge.net/" }
  18. maven { url "https://maven.architectury.dev/" }
  19. mavenCentral()
  20. maven { url "https://maven.tterrag.com/" }
  21. }
  22. }
  23.  
  24. rootProject.name = "createoreproduction"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement