forked from FunnyGuilds/FunnyGuilds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
57 lines (45 loc) · 1.17 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
plugins {
id 'idea'
id 'org.ajoberstar.grgit' version '4.1.0'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
allprojects {
group = "net.dzikoysk.funnyguilds"
version = "4.10.0"
}
subprojects {
repositories {
mavenLocal()
mavenCentral()
maven {
url "https://hub.spigotmc.org/nexus/content/repositories/snapshots/"
}
maven {
url "https://repo.panda-lang.org/"
}
maven {
url "https://storehouse.okaeri.eu/repository/maven-public/"
}
maven {
url "https://maven.sk89q.com/repo/"
}
maven {
url "https://repo.extendedclip.com/content/repositories/placeholderapi/"
}
maven {
url "https://nexus.codecrafter47.de/content/repositories/public/"
}
maven {
url "https://repo.mvdw-software.com/content/groups/public/"
}
}
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
idea {
project {
jdkName = "16"
}
}