mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 06:41:41 +01:00
Use two blank lines between configure blocks
To increase readability
This commit is contained in:
parent
5cdacbe336
commit
22b92f7057
1 changed files with 13 additions and 0 deletions
13
build.gradle
13
build.gradle
|
@ -11,10 +11,12 @@ buildscript {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
configure(rootProject) {
|
||||
apply plugin: 'java-base'
|
||||
}
|
||||
|
||||
|
||||
configure(subprojects) {
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'com.google.osdetector'
|
||||
|
@ -55,6 +57,7 @@ configure(subprojects) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
configure([project(':desktop'),
|
||||
project(':monitor'),
|
||||
project(':relay'),
|
||||
|
@ -67,6 +70,7 @@ configure([project(':desktop'),
|
|||
distZip.enabled = false
|
||||
}
|
||||
|
||||
|
||||
configure(project(':assets')) {
|
||||
dependencies {
|
||||
compile("network.bisq.libdohj:libdohj-core:$libdohjVersion") {
|
||||
|
@ -78,6 +82,7 @@ configure(project(':assets')) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
configure(project(':common')) {
|
||||
apply plugin: 'com.google.protobuf'
|
||||
|
||||
|
@ -122,6 +127,7 @@ configure(project(':common')) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
configure(project(':p2p')) {
|
||||
dependencies {
|
||||
compile project(':common')
|
||||
|
@ -141,6 +147,7 @@ configure(project(':p2p')) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
configure(project(':core')) {
|
||||
dependencies {
|
||||
compile project(':assets')
|
||||
|
@ -192,6 +199,7 @@ configure(project(':core')) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
configure(project(':desktop')) {
|
||||
apply plugin: 'com.github.johnrengelman.shadow'
|
||||
apply plugin: 'witness'
|
||||
|
@ -247,6 +255,7 @@ configure(project(':desktop')) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
configure(project(':monitor')) {
|
||||
mainClassName = 'bisq.monitor.MonitorMain'
|
||||
|
||||
|
@ -259,6 +268,7 @@ configure(project(':monitor')) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
configure(project(':pricenode')) {
|
||||
apply plugin: "org.springframework.boot"
|
||||
|
||||
|
@ -283,6 +293,7 @@ configure(project(':pricenode')) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
configure(project(':relay')) {
|
||||
mainClassName = 'bisq.relay.RelayMain'
|
||||
|
||||
|
@ -295,6 +306,7 @@ configure(project(':relay')) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
configure(project(':seednode')) {
|
||||
apply plugin: 'com.github.johnrengelman.shadow'
|
||||
|
||||
|
@ -310,6 +322,7 @@ configure(project(':seednode')) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
configure(project(':statsnode')) {
|
||||
mainClassName = 'bisq.statistics.StatisticsMain'
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue