-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (33 loc) · 845 Bytes
/
build.gradle
File metadata and controls
37 lines (33 loc) · 845 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
allprojects {
group 'eu.miopowered.nickapi'
version '1.0'
}
subprojects {
apply plugin: 'java'
tasks.withType(JavaCompile) {
targetCompatibility = '11'
sourceCompatibility = '11'
options.encoding = 'UTF-8'
}
repositories {
mavenCentral()
maven {
name "spigot-repo"
url "https://hub.spigotmc.org/nexus/content/repositories/snapshots/"
}
maven {
name "bungeecord-repo"
url "https://oss.sonatype.org/content/repositories/snapshots"
}
maven {
url "https://jitpack.io"
}
maven {
url "https://repo.dmulloy2.net/repository/public/"
}
maven {
name = 'minecraft-repo'
url = 'https://libraries.minecraft.net/'
}
}
}