23 lines
		
	
	
	
		
			344 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			344 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
| plugins {
 | |
|     `kotlin-dsl`
 | |
| }
 | |
| 
 | |
| gradlePlugin {
 | |
|     plugins {
 | |
|         create("pluginsForCoolKids") {
 | |
|             id = "rust"
 | |
|             implementationClass = "RustPlugin"
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| repositories {
 | |
|     google()
 | |
|     mavenCentral()
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
|     compileOnly(gradleApi())
 | |
|     implementation("com.android.tools.build:gradle:8.0.0")
 | |
| }
 | |
| 
 |