-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (29 loc) · 793 Bytes
/
build.gradle
File metadata and controls
36 lines (29 loc) · 793 Bytes
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
group 'com.bunq.tinker'
version '0.0.1'
apply plugin: 'java'
apply plugin: 'maven'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
// https://mvnrepository.com/artifact/commons-cli/commons-cli
compile group: 'commons-cli', name: 'commons-cli', version: '1.2'
compile 'com.github.bunq:sdk_java:1.13.1'
}
compileJava {
options.compilerArgs << '-Xlint:unchecked'
}
jar {
manifest {
attributes ('Main-Class': 'com.bunq.tinker.utils.TinkerRunner',
"Class-Path": configurations.compile.collect { it.absolutePath }.join(' ')
)
}
}
configurations {
jar.archiveName = 'tinker.jar'
}
apply plugin: 'idea'