bisq/relay/build.gradle
2018-09-14 11:48:49 +02:00

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
}