-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
25 lines (21 loc) · 875 Bytes
/
build.gradle.kts
File metadata and controls
25 lines (21 loc) · 875 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
plugins {
id("xyz.unifycraft.uniloom") version("1.0.0-beta.21") apply(false)
}
allprojects {
group = extra["project.group"]?.toString() ?: throw groovy.lang.MissingPropertyException("Project group was not set!")
version = extra["project.version"]?.toString() ?: throw groovy.lang.MissingPropertyException("Project version was not set!")
repositories {
// Snapshots
mavenLocal()
// Default repositories
mavenCentral()
// Repositories
maven("https://libraries.minecraft.net/")
maven("https://repo.spongepowered.org/maven/")
maven("https://jitpack.io/")
maven("https://maven.spruceloader.xyz/releases")
maven("https://maven.spruceloader.xyz/snapshots")
maven("https://maven.enhancedpixel.xyz/releases")
maven("https://maven.enhancedpixel.xyz/snapshots")
}
}