mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
19 lines
384 B
Groovy
19 lines
384 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url "https://jitpack.io" }
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'bisq.gradle.regtest_plugin.RegtestPlugin'
|
|
}
|
|
|
|
if (hasProperty('buildScan')) {
|
|
buildScan {
|
|
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
|
|
termsOfServiceAgree = 'yes'
|
|
}
|
|
}
|