max / goingson
| 1 | plugins { |
| 2 | `kotlin-dsl` |
| 3 | } |
| 4 | |
| 5 | gradlePlugin { |
| 6 | plugins { |
| 7 | create("pluginsForCoolKids") { |
| 8 | id = "rust" |
| 9 | implementationClass = "RustPlugin" |
| 10 | } |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | repositories { |
| 15 | google() |
| 16 | mavenCentral() |
| 17 | } |
| 18 | |
| 19 | dependencies { |
| 20 | compileOnly(gradleApi()) |
| 21 | implementation("com.android.tools.build:gradle:8.11.0") |
| 22 | } |
| 23 | |
| 24 |