-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
57 lines (50 loc) · 1.34 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
import org.apache.tools.ant.filters.ReplaceTokens
defaultTasks 'build'
allprojects {
group 'uno.unicore'
version '1.0.5-STABLE'
}
subprojects {
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven {
url "https://hub.spigotmc.org/nexus/content/repositories/snapshots"
}
maven {
url "https://repo.spongepowered.org/maven"
}
maven {
url "https://repo.codemc.io/repository/maven-public/"
}
maven {
url 'https://repo.panda-lang.org/releases'
}
maven {
url "https://ci.frostcast.net/plugin/repository/everything"
}
maven {
url 'https://jitpack.io'
}
maven {
url "https://repo.essentialsx.net/releases/"
}
maven {
url "https://papermc.io/repo/repository/maven-public/"
}
maven {
url = "https://repo.aikar.co/content/groups/aikar/"
}
maven {
url = "https://repo.extendedclip.com/content/repositories/placeholderapi/"
}
}
processResources {
filter(ReplaceTokens, tokens: ["app.version": this.project.version])
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
}