-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathbuild.gradle
More file actions
59 lines (42 loc) · 1.54 KB
/
build.gradle
File metadata and controls
59 lines (42 loc) · 1.54 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
group 'info.bcdev'
version '1.0'
apply plugin: 'java'
apply plugin: 'idea'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
configurations {
// configuration that holds jars to include in the jar
extraLibs
}
jar {
manifest {
attributes "Main-Class": "info.bcdev.telegramwallet.Main"
}
doFirst {
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
}
from('libs/') {
include '*.jar'
}
exclude 'libs/*.jar'
exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA'
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile fileTree(dir: 'libs', include: ['*.jar'])
// https://mvnrepository.com/artifact/org.telegram/telegrambots
compile group: 'org.telegram', name: 'telegrambots', version: '4.3.1'
// https://mvnrepository.com/artifact/org.web3j/core
compile group: 'org.web3j', name: 'core', version: '4.3.0'
// https://mvnrepository.com/artifact/org.bitcoinj/bitcoinj-core
compile group: 'org.bitcoinj', name: 'bitcoinj-core', version: '0.14.7'
// https://mvnrepository.com/artifact/com.google.code.gson/gson
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
// https://mvnrepository.com/artifact/com.vdurmont/emoji-java
compile group: 'com.vdurmont', name: 'emoji-java', version: '4.0.0'
// https://mvnrepository.com/artifact/com.google.zxing/javase
compile group: 'com.google.zxing', name: 'javase', version: '3.4.0'
}