-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (28 loc) · 888 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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("network.bisq:bisq-common:-SNAPSHOT")
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
}