mirror of
				https://github.com/OpenAPITools/openapi-generator.git
				synced 2025-11-04 10:43:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			480 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			480 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
pluginManagement {
 | 
						|
    repositories {
 | 
						|
        maven { url = uri("https://repo.spring.io/snapshot") }
 | 
						|
        maven { url = uri("https://repo.spring.io/milestone") }
 | 
						|
        gradlePluginPortal()
 | 
						|
    }
 | 
						|
    resolutionStrategy {
 | 
						|
        eachPlugin {
 | 
						|
            if (requested.id.id == "org.springframework.boot") {
 | 
						|
                useModule("org.springframework.boot:spring-boot-gradle-plugin:${requested.version}")
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
rootProject.name = "openapi-spring"
 |