Compare commits

...

11 Commits

Author SHA1 Message Date
Eli Orona ff89418bed
Merge pull request #33 from ix0rai/cool-branch
remake #27 for latest (use $group in QMJ)
2024-01-27 20:23:26 -08:00
ix0rai a264ef5d30
remake #27 for latest 2024-01-27 22:21:48 -06:00
Eli Orona eb53523c92
Merge pull request #31 from finasera/1.20.1
deps: Update deps
2024-01-27 20:19:00 -08:00
Sera Fina 867fda56f6 deps: Update deps 2023-10-15 15:10:23 -07:00
Ennui Langeweile 9c070ddce3
Update to Quilt Loader 0.21.0 and Quilt Loom 1.4 2023-10-03 01:17:45 -03:00
Ennui Langeweile 65543cf5ad
Review the changes post-commit 2023-10-03 01:15:46 -03:00
glitch 55e7547d49 Add loom mods block 2023-09-25 15:47:51 -05:00
Ennui Langeweile cf742986e7
Update to Gradle 8.3 2023-08-18 19:14:59 -03:00
Ennui Langeweile bd17863b45
Update dependencies 2023-08-18 19:14:51 -03:00
Ennui Langeweile ecc63b961b
Update dependencies 2023-08-12 15:47:26 -03:00
Ecorous ee95739b5d
fix grammar (#29) 2023-07-30 14:44:36 -03:00
7 changed files with 43 additions and 19 deletions

View File

@ -19,7 +19,7 @@ In order to use this mod as a template:
- In `quilt.mod.json`, don't forget to put the license's [SPDX identifier](https://spdx.org/licenses/) under the `"license"` property in `"metadata"`. - In `quilt.mod.json`, don't forget to put the license's [SPDX identifier](https://spdx.org/licenses/) under the `"license"` property in `"metadata"`.
- The GPLv3 and AGPLv3 are not valid mod licenses, so you can use almost any license except for those. - The GPLv3 and AGPLv3 are not valid mod licenses, so you can use almost any license except for those.
- Update the Java sub-directory structure so it reflects your Maven group - Update the Java sub-directory structure so it reflects your Maven group
- If the dependencies on `gradle/libs.versions.toml` isn't up-to-date, feel free to update them! The [linked utility](https://lambdaurora.dev/tools/import_quilt.html) should help you in this easy and quick process. - If the dependencies in `gradle/libs.versions.toml` aren't up-to-date, feel free to update them! The [linked utility](https://lambdaurora.dev/tools/import_quilt.html) should help you in this easy and quick process.
4. The mod is now ready to be worked on! 4. The mod is now ready to be worked on!
## License ## License

View File

@ -3,7 +3,10 @@ plugins {
alias libs.plugins.quilt.loom alias libs.plugins.quilt.loom
} }
base.archivesName = project.archives_base_name base {
archivesName = project.archives_base_name
}
version = "$project.version+${libs.versions.minecraft.get()}" version = "$project.version+${libs.versions.minecraft.get()}"
group = project.maven_group group = project.maven_group
@ -15,6 +18,20 @@ repositories {
// for more information about repositories. // for more information about repositories.
} }
loom {
// Loom and Loader both use this block in order to gather more information about your mod.
mods {
// This should match your mod id.
"example_mod" {
// Tell Loom about each source set used by your mod here. This ensures that your mod's classes are properly transformed by Loader.
sourceSet("main")
// If you shade (directly include classes, not JiJ) a dependency into your mod, include it here using one of these methods:
// dependency("com.example.shadowedmod:1.2.3")
// configuration("exampleShadedConfigurationName")
}
}
}
// All the dependencies are declared at gradle/libs.version.toml and referenced with "libs.<id>" // All the dependencies are declared at gradle/libs.version.toml and referenced with "libs.<id>"
// See https://docs.gradle.org/current/userguide/platforms.html for information on how version catalogs work. // See https://docs.gradle.org/current/userguide/platforms.html for information on how version catalogs work.
dependencies { dependencies {
@ -36,10 +53,10 @@ dependencies {
} }
processResources { processResources {
inputs.property 'version', version inputs.properties 'version': version, 'group': project.group
filesMatching('quilt.mod.json') { filesMatching('quilt.mod.json') {
expand 'version': version expand 'version': version, 'group': project.group
} }
} }

View File

@ -1,10 +1,12 @@
[versions] [versions]
# The latest versions are available at https://lambdaurora.dev/tools/import_quilt.html # The latest versions are available at https://lambdaurora.dev/tools/import_quilt.html
minecraft = "1.20.1" minecraft = "1.20.1"
quilt_mappings = "1.20.1+build.1" loom = "1.4.1"
quilt_loader = "0.19.1"
quilted_fabric_api = "7.0.3+0.83.1-1.20.1" quilt_mappings = "1.20.1+build.23"
quilt_loader = "0.21.0"
quilted_fabric_api = "7.4.0+0.90.0-1.20.1"
[libraries] [libraries]
minecraft = { module = "com.mojang:minecraft", version.ref = "minecraft" } minecraft = { module = "com.mojang:minecraft", version.ref = "minecraft" }
@ -19,4 +21,4 @@ quilted_fabric_api_deprecated = { module = "org.quiltmc.quilted-fabric-api:quilt
quilted_fabric_api = ["quilted_fabric_api", "quilted_fabric_api_deprecated"] quilted_fabric_api = ["quilted_fabric_api", "quilted_fabric_api_deprecated"]
[plugins] [plugins]
quilt_loom = { id = "org.quiltmc.loom", version = "1.2.+" } quilt_loom = { id = "org.quiltmc.loom", version.ref = "loom" }

Binary file not shown.

View File

@ -1,6 +1,7 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
networkTimeout=10000 networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists

22
gradlew vendored
View File

@ -83,7 +83,8 @@ done
# This is normally unused # This is normally unused
# shellcheck disable=SC2034 # shellcheck disable=SC2034
APP_BASE_NAME=${0##*/} APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
# Use the maximum available, or set MAX_FD != -1 to use that value. # Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum MAX_FD=maximum
@ -130,10 +131,13 @@ location of your Java installation."
fi fi
else else
JAVACMD=java JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the Please set the JAVA_HOME variable in your environment to match the
location of your Java installation." location of your Java installation."
fi
fi fi
# Increase the maximum file descriptors if we can. # Increase the maximum file descriptors if we can.
@ -141,7 +145,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #( case $MAX_FD in #(
max*) max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045 # shellcheck disable=SC2039,SC3045
MAX_FD=$( ulimit -H -n ) || MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit" warn "Could not query maximum file descriptor limit"
esac esac
@ -149,7 +153,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
'' | soft) :;; #( '' | soft) :;; #(
*) *)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045 # shellcheck disable=SC2039,SC3045
ulimit -n "$MAX_FD" || ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD" warn "Could not set maximum file descriptor limit to $MAX_FD"
esac esac
@ -198,11 +202,11 @@ fi
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Collect all arguments for the java command; # Collect all arguments for the java command:
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of # * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# shell script including quotes and variable substitutions, so put them in # and any embedded shellness will be escaped.
# double quotes to make sure that they get re-expanded; and # * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
# * put everything else in single quotes, so that it's not re-expanded. # treated as '${Hostname}' itself on the command line.
set -- \ set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \ "-Dorg.gradle.appname=$APP_BASE_NAME" \

View File

@ -1,7 +1,7 @@
{ {
"schema_version": 1, "schema_version": 1,
"quilt_loader": { "quilt_loader": {
"group": "com.example", "group": "${group}",
"id": "example_mod", "id": "example_mod",
"version": "${version}", "version": "${version}",
"metadata": { "metadata": {