mirror of
https://github.com/bisq-network/bisq.git
synced 2025-01-19 05:44:05 +01:00
Use single quotes for Gradle strings
This commit is contained in:
parent
cc5ed491be
commit
394914ef8d
@ -12,15 +12,15 @@ mainClassName = 'bisq.monitor.MonitorMain'
|
||||
|
||||
repositories {
|
||||
jcenter()
|
||||
maven { url "https://jitpack.io" }
|
||||
maven { url 'https://jitpack.io' }
|
||||
maven { url 'https://raw.githubusercontent.com/JesusMcCloud/tor-binary/master/release/' }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile project(":common")
|
||||
compile("com.sparkjava:spark-core:2.5.2")
|
||||
compile("com.turo:pushy:0.13.2")
|
||||
compile("com.google.firebase:firebase-admin:6.2.0")
|
||||
compile project(':common')
|
||||
compile 'com.sparkjava:spark-core:2.5.2'
|
||||
compile 'com.turo:pushy:0.13.2'
|
||||
compile 'com.google.firebase:firebase-admin:6.2.0'
|
||||
compile 'commons-codec:commons-codec:1.9'
|
||||
compileOnly 'org.projectlombok:lombok:1.18.2'
|
||||
annotationProcessor 'org.projectlombok:lombok:1.18.2'
|
||||
@ -29,4 +29,3 @@ dependencies {
|
||||
build.dependsOn installDist
|
||||
installDist.destinationDir = file('build/app')
|
||||
distZip.enabled = false
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user