-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
46 lines (33 loc) · 979 Bytes
/
build.gradle
File metadata and controls
46 lines (33 loc) · 979 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
41
42
43
44
45
46
plugins {
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
allprojects {
group = 'xyz.upperlevel.openverse'
version = '1.0'
}
project.ext.set("openverseOutDir", project.buildDir.toPath().resolve("game"))
subprojects {
apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: 'com.github.johnrengelman.shadow'
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.jar.enabled = false
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
testCompileOnly 'org.projectlombok:lombok:1.18.20' // TODO needed ?
testAnnotationProcessor 'org.projectlombok:lombok:1.18.20'
api group: 'org.yaml', name: 'snakeyaml', version: '1.17'
testImplementation 'junit:junit:4.13'
}
test {
useJUnit()
}
shadowJar {
}
}