-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
executable file
·44 lines (34 loc) · 1.02 KB
/
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
37
38
39
40
41
42
43
44
plugins {
id 'io.franzbecker.gradle-lombok' version '1.14'
id 'java'
}
group 'tagomori'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url "https://dl.bintray.com/ethereum/maven/" }
}
lombok {
version = '1.18.4'
sha256 = ""
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'org.ethereum', name: 'ethereumj-core', version: '1.11.0-RELEASE'
compile files("z3/com.microsoft.z3.jar")
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile "com.google.guava:guava:24.1-jre"
compile "org.slf4j:slf4j-api:1.7.7"
compile "ch.qos.logback:logback-classic:1.1.7"
compile "org.apache.commons:commons-lang3:3.4"
compile "com.fasterxml.jackson.core:jackson-databind:2.5.1"
compile "org.ethereum:rocksdbjni:5.9.2"
}
apply plugin: 'application'
mainClassName = 'net.katagaitai.tagomori.Start'
jar {
manifest {
attributes 'Main-Class': 'net.katagaitai.tagomori.Start '
}
}