added kitsune and pixie

This commit is contained in:
2026-07-07 16:37:07 +02:00
parent 05fec3adcb
commit f2ebb37bde
19 changed files with 320 additions and 56 deletions

View File

@@ -1,17 +1,13 @@
plugins {
id 'fabric-loom' version '1.10.1'
id 'maven-publish'
id 'net.fabricmc.fabric-loom-remap' version "${loom_version}"
id 'maven-publish'
}
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
archivesBaseName = project.archives_base_name
version = project.mod_version
group = project.maven_group
repositories {
mavenLocal()
mavenLocal()
maven {
name "cloth config"
url "https://maven.shedaniel.me"
@@ -44,11 +40,21 @@ repositories {
name = "TeamResourceful"
url = "https://maven.teamresourceful.com/repository/maven-releases"
}
}
// loom {
// splitEnvironmentSourceSets()
// mods {
// "modid" {
// sourceSet sourceSets.main
// sourceSet sourceSets.client
// }
// }
// }
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings loom.layered {
// officialMojangMappings()
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
@@ -71,54 +77,54 @@ dependencies {
modLocalRuntime "dev.emi:emi-fabric:${emi_version}"
modImplementation "dev.cammiescorner.icarus:Icarus-Fabric:${project.icarus_version}"
}
processResources {
inputs.property "version", project.version
def version = project.version
inputs.property "version", version
filteringCharset = "UTF-8"
filesMatching("fabric.mod.json") {
expand "version": project.version
}
filesMatching("fabric.mod.json") {
expand "version": version
}
}
// ensure that the encoding is set to UTF-8, no matter what the system default is
// this fixes some edge cases with special characters not displaying correctly
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
tasks.withType(JavaCompile).configureEach {
it.options.release = 17
}
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this task, sources will not be generated.
// task sourcesJar(type: Jar, dependsOn: classes) {
// classifier = "sources"
// from sourceSets.main.allSource
// }
java {
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this line, sources will not be generated.
withSourcesJar()
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
jar {
from "LICENSE"
def projectName = project.name
inputs.property "projectName", projectName
from("LICENSE") {
rename { "${it}_$projectName"}
}
}
// configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
// add all the jars that should be included when publishing to maven
artifact(remapJar) {
builtBy remapJar
}
// artifact(sourcesJar) {
// builtBy remapSourcesJar
// }
}
}
publications {
create("mavenJava", MavenPublication) {
from components.java
}
}
// select the repositories you want to publish to
repositories {
// uncomment to publish to the local maven
// mavenLocal()
}
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
repositories {
// Add repositories to publish to here.
// Notice: This block does NOT have the same function as the block in the top level.
// The repositories here will be used for publishing your artifact, not for
// retrieving dependencies.
}
}