-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (32 loc) · 722 Bytes
/
Copy pathbuild.gradle
File metadata and controls
40 lines (32 loc) · 722 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
37
38
39
40
plugins {
id 'java'
id 'com.gradleup.shadow' version '9.2.2'
}
group 'de.labystudio'
version '1.5.2'
compileJava {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
compileTestJava {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
repositories {
mavenCentral()
}
dependencies {
implementation group: 'net.java.dev.jna', name: 'jna', version: '5.14.0'
implementation group: 'net.java.dev.jna', name: 'jna-platform', version: '5.14.0'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.9'
}
java {
withSourcesJar()
withJavadocJar()
}
tasks.withType(Test).configureEach {
enabled = false
}
build {
dependsOn shadowJar
}