Skip to content

Commit 1b81423

Browse files
Use custom Unimined
1 parent 0d94dba commit 1b81423

8 files changed

Lines changed: 12 additions & 9 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
distribution: 'temurin'
2121
- uses: gradle/actions/setup-gradle@v4.3.1
2222
with:
23-
gradle-version: 9.0.0
23+
gradle-version: 9.2.0
2424
name: Set up Gradle
2525
- name: Add permission
2626
run: chmod +x ./gradlew

.github/workflows/release-to-cf-mr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- uses: gradle/actions/setup-gradle@v4.3.1
2424
with:
25-
gradle-version: 9.0.0
25+
gradle-version: 9.2.0
2626
name: Set up Gradle
2727

2828
- name: Add permission

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
distribution: 'temurin'
2020
- uses: gradle/actions/setup-gradle@v4.3.1
2121
with:
22-
gradle-version: 9.0.0
22+
gradle-version: 9.2.0
2323
name: Set up Gradle
2424
- name: Add permission
2525
run: chmod +x ./gradlew

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'java-library'
44
id 'maven-publish'
55
id 'com.gradleup.shadow' version '9.0.2'
6-
id 'xyz.wagyourtail.unimined' version '1.4.1'
6+
id 'xyz.wagyourtail.unimined' version '1.4.3-kappa'
77
id 'net.kyori.blossom' version '2.1.0'
88
}
99

@@ -66,7 +66,7 @@ unimined.minecraft {
6666
if (propertyBool('use_access_transformer')) {
6767
accessTransformer "${rootProject.projectDir}/src/main/resources/" + propertyString('access_transformer_locations')
6868
}
69-
loader "0.3.17-alpha"
69+
loader "0.3.24-alpha"
7070
runs.auth.username = minecraft_username
7171
runs.all {
7272
def extraArgs = propertyString('extra_jvm_args')

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ enable_shadow = false
1515
# Set this to true if you want to use old LWJGL2 methods.
1616
# WARNING: Using LWJGL2 is no longer recommend, and some methods in LWJGL2 will be unavailable.
1717
# If you are porting an old mod lazily just set this to true.
18-
enable_lwjglx = false
18+
enable_lwjglx = true
1919

2020
# Mod Information
2121
# HIGHLY RECOMMEND complying with SemVer for mod_version: https://semver.org/
@@ -57,7 +57,7 @@ maven_url =
5757
# Use the property `access_transformer_locations` to state custom AT files if you aren't using the default `mod_id_at.cfg` location
5858
# If multiple locations are stated, use spaces as the delimiter
5959
# WARNING: Use MCP name in AT file. Unimined will remap it to srg name when building.
60-
use_access_transformer = false
60+
use_access_transformer = true
6161
access_transformer_locations = ${mod_id}_at.cfg
6262

6363
# Coremods

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

settings.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ pluginManagement {
1313
maven {
1414
url = "https://maven.wagyourtail.xyz/releases"
1515
}
16+
maven {
17+
url = "https://maven.outlands.top/releases"
18+
}
19+
1620
maven {
1721
url = "https://maven.wagyourtail.xyz/snapshots"
1822
}

src/main/java/com/example/modid/ExampleMod.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package com.example.modid;
22

3-
import com.example.modid.Reference;
43
import net.minecraftforge.fml.common.Mod;
54
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
65
import org.apache.logging.log4j.LogManager;

0 commit comments

Comments
 (0)