mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
26 lines
473 B
Plaintext
26 lines
473 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("settingsGradlePropertyDelegate") {
|
|
id = "settings-property-delegate"
|
|
implementationClass = "SettingsPropertyDelegate"
|
|
}
|
|
|
|
register("projectGradlePropertyDelegate") {
|
|
id = "property-delegate"
|
|
implementationClass = "ProjectPropertyDelegate"
|
|
}
|
|
}
|
|
}
|