mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-25 07:27:18 +01:00
21 lines
383 B
Kotlin
21 lines
383 B
Kotlin
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"))
|
|
}
|