mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-25 15:29:38 +01:00
22 lines
383 B
Text
22 lines
383 B
Text
|
plugins {
|
||
|
`java-gradle-plugin`
|
||
|
`kotlin-dsl`
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
gradlePlugin {
|
||
|
plugins {
|
||
|
create("BisqTorBinaryPlugin") {
|
||
|
id = "bisq.gradle.tor_binary.BisqTorBinaryPlugin"
|
||
|
implementationClass = "bisq.gradle.tor_binary.BisqTorBinaryPlugin"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":gradle-tasks"))
|
||
|
}
|