This repository has been archived by the owner on Jun 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
build.gradle
88 lines (77 loc) · 2.13 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
plugins {
id("java-library")
id("com.github.johnrengelman.shadow") version("6.1.0")
}
group = "net.labymod"
version = properties["VERSION"] as String
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
repositories {
mavenCentral()
jcenter()
maven {
name = "velocity-repository"
url = "https://repo.velocitypowered.com/snapshots/"
}
maven {
name = "bungeecord-repository"
url = "https://oss.sonatype.org/content/repositories/snapshots"
}
maven {
name = "sponge-repository"
url = "https://repo.spongepowered.org/maven"
}
maven {
name = "bungeecord-repository"
url = "https://oss.sonatype.org/content/repositories/snapshots"
}
maven {
name = "spigot-repository"
url = "https://hub.spigotmc.org/nexus/content/repositories/snapshots/"
}
maven {
name = "dmulloy2"
url = "https://repo.dmulloy2.net/nexus/repository/public/"
}
}
configurations {
shade
compile.extendsFrom shade
}
dependencies {
compile(project(":labymod-api")) {
exclude group: "com.google.code.gson"
exclude group: "com.google.guava"
exclude group: "io.netty"
}
compile(project(":labymod-common")) {
exclude group: "com.google.code.gson"
exclude group: "com.google.guava"
exclude group: "io.netty"
}
compile(project(":proxy:bungeecord")) {
exclude group: "com.google.code.gson"
exclude group: "com.google.guava"
exclude group: "io.netty"
}
compile(project(":proxy:velocity")) {
exclude group: "com.google.code.gson"
exclude group: "com.google.guava"
exclude group: "io.netty"
}
compile(project(":server:bukkit")) {
exclude group: "com.google.code.gson"
exclude group: "com.google.guava"
exclude group: "io.netty"
}
compile(project(":server:sponge")) {
exclude group: "com.google.code.gson"
exclude group: "com.google.guava"
exclude group: "io.netty"
}
}
shadowJar {
setClassifier("")
}