mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +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')
|
|
}
|