mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-25 07:27:18 +01:00
22 lines
428 B
Groovy
22 lines
428 B
Groovy
|
plugins {
|
||
|
id 'org.jetbrains.kotlin.jvm' version '1.7.10'
|
||
|
id 'org.gradle.kotlin.kotlin-dsl' version '2.4.1'
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
gradlePlugin {
|
||
|
plugins {
|
||
|
simplePlugin {
|
||
|
id = 'bisq.gradle.tor_binary.BisqTorBinaryPlugin'
|
||
|
implementationClass = 'bisq.gradle.tor_binary.BisqTorBinaryPlugin'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(':gradle-tasks')
|
||
|
}
|