Skip to content

Commit 9edf750

Browse files
Update Unimined
1 parent 46dff9f commit 9edf750

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CleanroomModTemplate
2-
Mod development template for Cleanroom, uses Unimined
2+
Mod development template for Cleanroom, uses a custom [Unimined fork](https://github.com/kappa-maintainer/Unimined) ([original](https://github.com/unimined/Unimined))
3+
4+
### WARNING: Custom Unimined Fork
5+
May have issues, report here or [here](https://github.com/kappa-maintainer/Unimined) when you encountered impossible field names or impossible Scala compiler errors.
36

47
## DOs and DON'Ts
58
### Choose Branch
@@ -15,7 +18,6 @@ There are 4 branches available:
1518

1619
If you want to use non-main branches, after clicked *Create a new repository* under *Use this template*, check the *Include all branches* checkbox.
1720

18-
1921
### Running Client or Server
2022
If you are using IntelliJ, **DO NOT** use the `Minecraft Client` configure with a blue icon. Just use the `2. Run Client` Gradle task.
2123

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'maven-publish'
55
id 'com.gradleup.shadow' version '9.3.2'
66
id 'org.jetbrains.gradle.plugin.idea-ext' version '1.4.1'
7-
id 'xyz.wagyourtail.unimined' version '1.4.10-kappa'
7+
id 'xyz.wagyourtail.unimined' version '1.4.14-kappa'
88
id 'net.kyori.blossom' version '2.2.0'
99
}
1010

gradle/scripts/dependencies.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ repositories {
1111
name 'Modrinth'
1212
url 'https://api.modrinth.com/maven'
1313
}
14+
mavenCentral()
1415
mavenLocal() // Must be last for caching to work
1516
}
1617

settings.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@ pluginManagement {
22
repositories {
33
gradlePluginPortal() {
44
content {
5-
excludeGroup("org.apache.logging.log4j")
5+
excludeGroup('org.apache.logging.log4j')
66
}
77
}
88
mavenCentral()
99
maven {
10-
url = "https://maven.minecraftforge.net/"
10+
url = 'https://maven.minecraftforge.net/'
1111
}
1212
maven {
13-
url = "https://maven.fabricmc.net/"
13+
url = 'https://maven.fabricmc.net/'
1414
}
1515
maven {
16-
url = "https://maven.wagyourtail.xyz/releases"
16+
url = 'https://maven.wagyourtail.xyz/releases'
1717
}
1818
maven {
19-
url = "https://maven.outlands.top/releases"
19+
url = 'https://maven.outlands.top/releases'
2020
}
2121

2222
maven {
23-
url = "https://maven.wagyourtail.xyz/snapshots"
23+
url = 'https://maven.wagyourtail.xyz/snapshots'
2424
}
2525
}
2626
}

0 commit comments

Comments
 (0)