-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
34 lines (31 loc) · 868 Bytes
/
build.gradle.kts
File metadata and controls
34 lines (31 loc) · 868 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
plugins {
base
}
tasks.named<UpdateDaemonJvm>("updateDaemonJvm") {
languageVersion = JavaLanguageVersion.of(25)
}
allprojects {
version = property("maven_version")!!
group = "net.pistonmaster"
repositories {
mavenCentral()
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots/") {
name = "spigot-snapshots"
}
maven("https://central.sonatype.com/repository/maven-snapshots/") {
name = "sonatype"
}
maven("https://repo.codemc.org/repository/maven-public") {
name = "codemc"
}
maven("https://jitpack.io") {
name = "jitpack"
}
maven("https://repo.tcoded.com/releases") {
name = "tcoded-releases"
content {
includeGroup("com.tcoded")
}
}
}
}