Fixed quilt running in gradle and updated quilt version
This commit is contained in:
+1
-1
@@ -43,4 +43,4 @@ forge_version=36.2.28
|
||||
enable_terraforged=2
|
||||
|
||||
# Quilt loader
|
||||
quilt_loader_version=0.16.0-beta.8
|
||||
quilt_loader_version=0.16.0-beta.10
|
||||
+1
-1
@@ -43,4 +43,4 @@ forge_version=37.1.1
|
||||
enable_terraforged=0
|
||||
|
||||
# Quilt loader
|
||||
quilt_loader_version=0.16.0-beta.8
|
||||
quilt_loader_version=0.16.0-beta.10
|
||||
+1
-1
@@ -43,4 +43,4 @@ forge_version=39.1.2
|
||||
enable_terraforged=0
|
||||
|
||||
# Quilt loader
|
||||
quilt_loader_version=0.16.0-beta.8
|
||||
quilt_loader_version=0.16.0-beta.10
|
||||
+1
-1
@@ -43,4 +43,4 @@ forge_version=40.0.18
|
||||
enable_terraforged=0
|
||||
|
||||
# Quilt loader
|
||||
quilt_loader_version=0.16.0-beta.8
|
||||
quilt_loader_version=0.16.0-beta.10
|
||||
+10
-3
@@ -41,6 +41,7 @@ dependencies {
|
||||
if (rootProject.use_quilt_rather_than_fabric == "true") {
|
||||
// Quilt loader
|
||||
modImplementation "org.quiltmc:quilt-loader:${rootProject.quilt_loader_version}"
|
||||
modImplementation "org.quiltmc:quilt-json5:1.0.0" // Needed for quilt loader but for some reason it dosnt come with it
|
||||
} else {
|
||||
// Fabric loader
|
||||
modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}"
|
||||
@@ -159,9 +160,15 @@ components.java {
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
mavenFabric(MavenPublication) {
|
||||
artifactId = rootProject.archives_base_name + "-" + project.name
|
||||
from components.java
|
||||
if (rootProject.use_quilt_rather_than_fabric == "false") {
|
||||
mavenFabric(MavenPublication) {
|
||||
artifactId = rootProject.archives_base_name + "-" + project.name
|
||||
from components.java
|
||||
}
|
||||
} else {
|
||||
mavenJava(MavenPublication) {
|
||||
from components.java
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -5,7 +5,7 @@ maven_group=com.seibel.lod
|
||||
archives_base_name=DistantHorizons
|
||||
|
||||
# Switch fabric to quilt on the fabric folder
|
||||
use_quilt_rather_than_fabric=false
|
||||
use_quilt_rather_than_fabric=true
|
||||
|
||||
# Mod info
|
||||
mod_version=1.6.3a-dev
|
||||
|
||||
Reference in New Issue
Block a user