mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-23 02:00:20 +07:00
26 lines
473 B
Kotlin
26 lines
473 B
Kotlin
|
|
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"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|