-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
43 lines (35 loc) · 1019 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
plugins {
id 'java-library'
id 'com.github.johnrengelman.shadow' version '4.0.4'
}
group 'me.skiincraft'
version '2021.0417.3'
repositories {
maven { url 'https://jitpack.io' }
jcenter()
mavenCentral()
}
dependencies {
implementation group: 'com.google.code.gson', name: 'gson', version: '2.9.0'
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.9.0'
implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.36'
testImplementation(platform('org.junit:junit-bom:5.7.0'))
testImplementation('org.junit.jupiter:junit-jupiter')
}
compileJava {
classpath = sourceSets.main.compileClasspath
options.encoding = 'UTF-8'
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
artifacts {
archives shadowJar
}
shadowJar{
archiveFileName = "Paladins-API.jar"
}
test {
useJUnitPlatform()
}