Initial commit

This commit is contained in:
Octol1ttle 2024-01-15 17:47:32 +05:00
commit 76d4b44153
Signed by: Octol1ttle
GPG key ID: B77C34313AEE1FFF
24 changed files with 787 additions and 0 deletions

77
fabric/build.gradle Normal file
View file

@ -0,0 +1,77 @@
plugins {
id "com.github.johnrengelman.shadow" version "7.1.2"
}
architectury {
platformSetupLoomIde()
fabric()
}
loom {
accessWidenerPath = project(":common").loom.accessWidenerPath
}
configurations {
common
shadowCommon // Don't use shadow from the shadow plugin since it *excludes* files.
compileClasspath.extendsFrom common
runtimeClasspath.extendsFrom common
developmentFabric.extendsFrom common
}
dependencies {
modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}"
modApi "net.fabricmc.fabric-api:fabric-api:${rootProject.fabric_api_version}"
// Remove the next line if you don't want to depend on the API
modApi "dev.architectury:architectury-fabric:${rootProject.architectury_version}"
common(project(path: ":common", configuration: "namedElements")) { transitive false }
shadowCommon(project(path: ":common", configuration: "transformProductionFabric")) { transitive false }
}
processResources {
inputs.property "version", project.version
filesMatching("fabric.mod.json") {
expand "version": project.version
}
}
shadowJar {
exclude "architectury.common.json"
configurations = [project.configurations.shadowCommon]
archiveClassifier = "dev-shadow"
}
remapJar {
injectAccessWidener = true
input.set shadowJar.archiveFile
dependsOn shadowJar
}
sourcesJar {
def commonSources = project(":common").sourcesJar
dependsOn commonSources
from commonSources.archiveFile.map { zipTree(it) }
}
components.java {
withVariantsFromConfiguration(project.configurations.shadowRuntimeElements) {
skip()
}
}
publishing {
publications {
mavenFabric(MavenPublication) {
artifactId = rootProject.archives_base_name + "-" + project.name
from components.java
}
}
// 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.
}
}

View file

@ -0,0 +1,11 @@
package ru.octol1ttle.knockdowns.fabric;
import ru.octol1ttle.knockdowns.common.KnockdownsCommon;
import net.fabricmc.api.ModInitializer;
public class KnockdownsFabric implements ModInitializer {
@Override
public void onInitialize() {
KnockdownsCommon.init();
}
}

View file

@ -0,0 +1,31 @@
{
"schemaVersion": 1,
"id": "knockdowns",
"version": "${version}",
"name": "Knockdowns",
"description": "DNBO mechanic from Fortnite, ported to Minecraft",
"authors": [
"Octol1ttle"
],
"contact": {
"homepage": "https://fabricmc.net/",
"sources": "https://github.com/FabricMC/fabric-example-mod"
},
"license": "ARR",
"icon": "assets/knockdowns/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"ru.octol1ttle.knockdowns.fabric.KnockdownsFabric"
]
},
"mixins": [
"knockdowns.mixins.json",
"knockdowns-common.mixins.json"
],
"depends": {
"fabric": "*",
"minecraft": ">=1.20.1",
"architectury": ">=9.1.12"
}
}

View file

@ -0,0 +1,13 @@
{
"required": true,
"package": "net.knockdowns.mixin.fabric",
"compatibilityLevel": "JAVA_17",
"minVersion": "0.8",
"client": [
],
"mixins": [
],
"injectors": {
"defaultRequire": 1
}
}