mirror of
				https://github.moeyy.xyz/https://github.com/GeWuYou/forgeboot
				synced 2025-10-28 23:18:54 +08:00 
			
		
		
		
	 2e60505c20
			
		
	
	
		2e60505c20
		
	
	
	
	
		
			
			- Create project build scripts and configuration files - Define module paths and project flags - Set up Kotlin and Spring Boot plugins - Configure Maven publishing and semantic versioning plugins - Add a source code packaging task - Set up the project dependency repositories - Initialize gradle-wrapper
		
			
				
	
	
		
			17 lines
		
	
	
		
			451 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			451 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| dependencyResolutionManagement {
 | |
| 
 | |
|     // Use Maven Central and the Gradle Plugin Portal for resolving dependencies in the shared build logic (`buildSrc`) project.
 | |
|     @Suppress("UnstableApiUsage")
 | |
|     repositories {
 | |
|         mavenCentral()
 | |
|     }
 | |
| 
 | |
|     // Reuse the version catalog from the main build.
 | |
|     versionCatalogs {
 | |
|         create("libs") {
 | |
|             from(files("../gradle/libs.versions.toml"))
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| rootProject.name = "buildSrc" |