mirror of
				https://github.com/zenorogue/hyperrogue.git
				synced 2025-11-03 23:33:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			533 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			533 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
pluginManagement {
 | 
						|
    repositories {
 | 
						|
        google {
 | 
						|
            content {
 | 
						|
                includeGroupByRegex("com\\.android.*")
 | 
						|
                includeGroupByRegex("com\\.google.*")
 | 
						|
                includeGroupByRegex("androidx.*")
 | 
						|
            }
 | 
						|
        }
 | 
						|
        mavenCentral()
 | 
						|
        gradlePluginPortal()
 | 
						|
    }
 | 
						|
}
 | 
						|
dependencyResolutionManagement {
 | 
						|
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
 | 
						|
    repositories {
 | 
						|
        google()
 | 
						|
        mavenCentral()
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
rootProject.name = "HyperRogue"
 | 
						|
include ':app'
 |