Deprecation

This commit is contained in:
samolego 2021-05-07 14:33:09 +02:00 committed by NikitaCartes
parent 919ef7f574
commit 4abe4a79af
No known key found for this signature in database
GPG Key ID: 3A5BAB26D767AA69
5 changed files with 38 additions and 7 deletions

View File

@ -1,4 +1,6 @@
# Simple Authentication Mod # *Deprecated*
## Simple Authentication Mod
[![License](https://img.shields.io/github/license/samolego/simpleauth.svg)](https://github.com/samolego/SimpleAuth/blob/master/LICENSE) [![License](https://img.shields.io/github/license/samolego/simpleauth.svg)](https://github.com/samolego/SimpleAuth/blob/master/LICENSE)
[![Fabric CI](https://github.com/samolego/SimpleAuth/workflows/Fabric%20CI/badge.svg)](https://samolego.github.io/projects/ci/SimpleAuth/latest) [![Fabric CI](https://github.com/samolego/SimpleAuth/workflows/Fabric%20CI/badge.svg)](https://samolego.github.io/projects/ci/SimpleAuth/latest)

View File

@ -21,11 +21,6 @@ architectury {
subprojects { subprojects {
apply plugin: "forgified-fabric-loom" apply plugin: "forgified-fabric-loom"
loom {
silentMojangMappingsLicense()
}
dependencies { dependencies {
minecraft "com.mojang:minecraft:${rootProject.minecraft_version}" minecraft "com.mojang:minecraft:${rootProject.minecraft_version}"
mappings("net.fabricmc:yarn:${rootProject.yarn_mappings}:v2") mappings("net.fabricmc:yarn:${rootProject.yarn_mappings}:v2")

View File

@ -0,0 +1,34 @@
{
"schemaVersion": 1,
"id": "simpleauth",
"version": "${version}",
"name": "Simple Authentication Mod",
"description": "A mod that tries to keep authentication for players simple via commands.",
"authors": [
"samo_lego"
],
"contact": {
"homepage": "https://samolego.github.io/projects",
"sources": "https://github.com/samolego/SimpleAuth"
},
"license": "MIT",
"environment": "*",
"entrypoints": {
"main": [
"org.samo_lego.simpleauth.SimpleAuthFabric"
]
},
"accessWidener": "simpleauth.accesswidener",
"mixins": [
"mixins.simpleauth.json"
],
"depends": {
"fabricloader": ">=0.8.8",
"fabric": "*"
},
"suggests": {
"flamingo": "*"
}
}

View File

@ -20,6 +20,7 @@
"org.samo_lego.simpleauth.SimpleAuthFabric" "org.samo_lego.simpleauth.SimpleAuthFabric"
] ]
}, },
"accessWidener": "simpleauth.accesswidener",
"mixins": [ "mixins": [
"mixins.simpleauth.json" "mixins.simpleauth.json"
], ],

View File

@ -20,7 +20,6 @@ loom {
dependencies { dependencies {
forge("net.minecraftforge:forge:${rootProject.minecraft_version}-${rootProject.forge_version}") forge("net.minecraftforge:forge:${rootProject.minecraft_version}-${rootProject.forge_version}")
modCompile("me.shedaniel:architectury:${rootProject.architectury_version}:forge")
implementation(project(path: ":common")) { implementation(project(path: ":common")) {
transitive = false transitive = false