-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (39 loc) · 848 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
37
38
39
40
41
42
43
44
45
46
47
48
49
group 'jlo'
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.jengelman.gradle.plugins:shadow:2.0.2"
}
}
repositories {
mavenCentral()
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'com.github.johnrengelman.shadow'
sourceCompatibility = 1.8
jar {
manifest {
attributes(
'Main-Class': 'personal.PayoutMachine'
)
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'com.paypal.sdk:rest-api-sdk:+'
compile 'org.apache.commons:commons-csv:1.5'
compile 'org.slf4j:slf4j-simple:+'
}
task wrapper(type: Wrapper) {
gradleVersion = '4.5.1'
}
shadowJar {
baseName = "payout"
classifier = null
version = null
}