mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-25 07:27:18 +01:00
18 lines
310 B
Text
18 lines
310 B
Text
|
plugins {
|
||
|
`java-gradle-plugin`
|
||
|
`kotlin-dsl`
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
gradlePlugin {
|
||
|
plugins {
|
||
|
create("RegtestPlugin") {
|
||
|
id = "bisq.gradle.regtest_plugin.RegtestPlugin"
|
||
|
implementationClass = "bisq.gradle.regtest_plugin.RegtestPlugin"
|
||
|
}
|
||
|
}
|
||
|
}
|