20 lines
320 B
Plaintext
20 lines
320 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("MagiskPlugin") {
|
|
id = "MagiskPlugin"
|
|
implementationClass = "MagiskPlugin"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.eclipse.jgit:org.eclipse.jgit:5.10.0.202012080955-r")
|
|
}
|