-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (38 loc) · 1.04 KB
/
build.gradle
File metadata and controls
42 lines (38 loc) · 1.04 KB
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
plugins {
id "java-library"
id "base.base-conventions"
id "base.fill-build-constants"
id "vialegacy.publishing-conventions"
id "via.run-with-viaproxy-task"
id "net.raphimc.class-token-replacer" version "1.1.7"
}
repositories {
maven {
name = "ViaVersion"
url = "https://repo.viaversion.com"
content {
includeGroupByRegex "com\\.viaversion(\\..+)?"
includeGroupByRegex "net\\.raphimc(\\..+)?"
}
}
}
dependencies {
compileOnly "com.viaversion:viaversion-common:5.7.2"
compileOnly "com.google.guava:guava:33.5.0-jre"
compileOnly "io.netty:netty-handler:4.2.10.Final"
api("com.seedfinding:mc_biome:1.171.1") {
transitive = false
}
api("com.seedfinding:mc_noise:1.171.1") {
transitive = false
}
api("com.seedfinding:mc_seed:1.171.2") {
transitive = false
}
api("com.seedfinding:mc_math:1.171.0") {
transitive = false
}
api("com.seedfinding:mc_core:1.210.0") {
transitive = false
}
}