mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
37 lines
869 B
Groovy
37 lines
869 B
Groovy
plugins {
|
|
id "java"
|
|
id "org.springframework.boot" version "1.5.10.RELEASE"
|
|
}
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
version = file("src/main/resources/version.txt").text
|
|
|
|
jar.manifest.attributes(
|
|
"Implementation-Title": rootProject.name,
|
|
"Implementation-Version": version)
|
|
|
|
jar.archiveName "${rootProject.name}.jar"
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
jcenter()
|
|
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")
|
|
|
|
compileOnly 'org.projectlombok:lombok:1.16.16'
|
|
//annotationProcessor 'org.projectlombok:lombok:1.16.16'
|
|
}
|
|
|
|
task stage {
|
|
dependsOn assemble
|
|
}
|