mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
18 lines
317 B
Plaintext
18 lines
317 B
Plaintext
plugins {
|
|
`java-gradle-plugin`
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("AppStartPlugin") {
|
|
id = "bisq.gradle.app_start_plugin.AppStartPlugin"
|
|
implementationClass = "bisq.gradle.app_start_plugin.AppStartPlugin"
|
|
}
|
|
}
|
|
}
|