forked from Neiy0/UltraScoreboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
56 lines (45 loc) · 1.05 KB
/
build.gradle
File metadata and controls
56 lines (45 loc) · 1.05 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
plugins{
id 'java'
id 'java-library'
id 'maven-publish'
id 'com.gradleup.shadow' version '9.3.1'
}
group = 'fr.neiyo.scoreboard'
version = '1.0-SNAPSHOT'
java {
withSourcesJar()
sourceCompatibility JavaVersion.VERSION_25
targetCompatibility JavaVersion.VERSION_25
}
repositories {
mavenCentral()
maven {
name = "hytale-release"
url = uri("https://maven.hytale.com/release")
}
maven {
name = "hytale-pre-release"
url = uri("https://maven.hytale.com/pre-release")
}
maven {
name "HytaleModding"
url "https://maven.hytale-mods.dev/releases"
}
maven {
name = "jitpack"
url = uri("https://jitpack.io")
}
}
dependencies {
compileOnly 'com.hypixel.hytale:Server:2026.01.24-6e2d4fc36'
// Multiple HUD support
compileOnly "com.buuz135:MultipleHUD:1.0.4"
compileOnly("com.github.Flash303:HytaleMultipleHUD:v1")
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}