-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
60 lines (47 loc) · 1.55 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
group = 'com.thoxia'
version = '1.0.0'
repositories {
mavenCentral()
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.26'
annotationProcessor 'org.projectlombok:lombok:1.18.26'
// velocity does not have these dependencies in their api module
compileOnly 'com.google.code.gson:gson:2.10.1'
compileOnly 'com.google.guava:guava:33.1.0-jre'
compileOnly ('net.dv8tion:JDA:5.0.0-beta.20') {
exclude group: "club.minnced", module: "opus-java"
}
implementation 'org.apache.httpcomponents:httpclient:4.5.14'
}
def targetJavaVersion = 16
java {
def javaVersion = JavaVersion.toVersion(targetJavaVersion)
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
if (JavaVersion.current() < javaVersion) {
toolchain.languageVersion = JavaLanguageVersion.of(targetJavaVersion)
}
}
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
if (targetJavaVersion >= 10 || JavaVersion.current().isJava10Compatible()) {
options.release = targetJavaVersion
}
}
build {
dependsOn shadowJar
}
shadowJar {
dependsOn(jar)
relocate 'org.apache.httpcomponents', 'com.thoxia.limbosecure.thirdparty.org.apache.httpcomponents'
from sourceSets.getByName("main").output
configurations = [project.configurations.getByName("runtimeClasspath")]
archiveFileName = "${project.name}.jar"
}