-
Notifications
You must be signed in to change notification settings - Fork 32
/
build.gradle
61 lines (51 loc) · 1.4 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
61
// Workaround for Shadow not supporting Java 19 classes.
// Remove this once Shadow updates.
// See: https://github.com/johnrengelman/shadow/pull/770
// See: https://discord.com/channels/722722769950998560/793019909055578113/978939925061857315
buildscript {
configurations.all {
resolutionStrategy {
force("org.ow2.asm:asm:9.5")
force("org.ow2.asm:asm-commons:9.5")
}
}
}
plugins {
id "io.github.goooler.shadow" version "8.1.7"
id 'java'
id 'maven-publish'
}
allprojects {
repositories {
maven { url 'https://libraries.minecraft.net/' }
maven { url "https://oss.sonatype.org/content/repositories/releases" }
maven { url "https://repo.mikeprimm.com" }
maven { url "https://repo.maven.apache.org/maven2" }
maven { url "https://hub.spigotmc.org/nexus/content/repositories/snapshots/" }
maven { url "https://repo.codemc.org/repository/maven-public/" }
}
apply plugin: 'java'
group = 'us.dynmap'
version = '3.7-SNAPSHOT'
}
class Globals {
String buildNumber = System.getenv().BUILD_NUMBER ?: "Dev"
}
ext {
globals = new Globals()
}
subprojects {
apply plugin: "io.github.goooler.shadow"
apply plugin: 'java'
apply plugin: 'maven-publish'
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
}
clean {
delete "target"
}
task setupCIWorkspace {
}