diff options
Diffstat (limited to 'build.gradle.kts')
| -rw-r--r-- | build.gradle.kts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 3d19748..465bbef 100644 --- a/build.gradle.kts +++ b/build.gradle.kts | |||
| @@ -14,18 +14,21 @@ val minecraftVersion: String by project | |||
| 14 | val patchouliVersion: String by project | 14 | val patchouliVersion: String by project |
| 15 | val quiltMappings: String by project | 15 | val quiltMappings: String by project |
| 16 | val quiltedFabricApiVersion: String by project | 16 | val quiltedFabricApiVersion: String by project |
| 17 | val wthitVersion: String by project | ||
| 17 | 18 | ||
| 18 | group = groupid | 19 | group = groupid |
| 19 | version = modVersion | 20 | version = modVersion |
| 20 | 21 | ||
| 21 | repositories { | 22 | repositories { |
| 22 | maven { | 23 | maven { |
| 24 | // For Patchouli | ||
| 23 | url = uri("https://maven.blamejared.com") | 25 | url = uri("https://maven.blamejared.com") |
| 24 | content { | 26 | content { |
| 25 | includeGroup("vazkii.patchouli") | 27 | includeGroup("vazkii.patchouli") |
| 26 | } | 28 | } |
| 27 | } | 29 | } |
| 28 | maven { | 30 | maven { |
| 31 | // For Chipped | ||
| 29 | url = uri("https://maven.resourcefulbees.com/repository/maven-public/") | 32 | url = uri("https://maven.resourcefulbees.com/repository/maven-public/") |
| 30 | content { | 33 | content { |
| 31 | includeGroup("com.teamresourceful") | 34 | includeGroup("com.teamresourceful") |
| @@ -35,6 +38,14 @@ repositories { | |||
| 35 | includeGroup("earth.terrarium.chipped") | 38 | includeGroup("earth.terrarium.chipped") |
| 36 | } | 39 | } |
| 37 | } | 40 | } |
| 41 | maven { | ||
| 42 | // For WTHIT | ||
| 43 | url = uri("https://maven2.bai.lol") | ||
| 44 | content { | ||
| 45 | includeGroup("lol.bai") | ||
| 46 | includeGroup("mcp.mobius.waila") | ||
| 47 | } | ||
| 48 | } | ||
| 38 | } | 49 | } |
| 39 | 50 | ||
| 40 | loom { | 51 | loom { |
| @@ -58,6 +69,8 @@ dependencies { | |||
| 58 | exclude(group = "net.fabricmc", module = "fabric-loader") | 69 | exclude(group = "net.fabricmc", module = "fabric-loader") |
| 59 | } | 70 | } |
| 60 | 71 | ||
| 72 | modCompileOnly("mcp.mobius.waila:wthit-api:quilt-${wthitVersion}") | ||
| 73 | |||
| 61 | modCompileOnly("earth.terrarium.chipped:chipped-fabric-${minecraftVersion}:${chippedVersion}") | 74 | modCompileOnly("earth.terrarium.chipped:chipped-fabric-${minecraftVersion}:${chippedVersion}") |
| 62 | 75 | ||
| 63 | compileOnly("jakarta.annotation:jakarta.annotation-api:${jakartaAnnotationVersion}") | 76 | compileOnly("jakarta.annotation:jakarta.annotation-api:${jakartaAnnotationVersion}") |