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