forked from sorceress/EasyAuth
Deprecation
This commit is contained in:
parent
4c37054c80
commit
91c8963434
|
@ -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)
|
||||
[![Fabric CI](https://github.com/samolego/SimpleAuth/workflows/Fabric%20CI/badge.svg)](https://samolego.github.io/projects/ci/SimpleAuth/latest)
|
||||
|
|
|
@ -21,11 +21,6 @@ architectury {
|
|||
|
||||
subprojects {
|
||||
apply plugin: "forgified-fabric-loom"
|
||||
|
||||
loom {
|
||||
silentMojangMappingsLicense()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
minecraft "com.mojang:minecraft:${rootProject.minecraft_version}"
|
||||
mappings("net.fabricmc:yarn:${rootProject.yarn_mappings}:v2")
|
||||
|
|
|
@ -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": "*"
|
||||
}
|
||||
}
|
|
@ -20,6 +20,7 @@
|
|||
"org.samo_lego.simpleauth.SimpleAuthFabric"
|
||||
]
|
||||
},
|
||||
"accessWidener": "simpleauth.accesswidener",
|
||||
"mixins": [
|
||||
"mixins.simpleauth.json"
|
||||
],
|
||||
|
|
|
@ -20,7 +20,6 @@ loom {
|
|||
|
||||
dependencies {
|
||||
forge("net.minecraftforge:forge:${rootProject.minecraft_version}-${rootProject.forge_version}")
|
||||
modCompile("me.shedaniel:architectury:${rootProject.architectury_version}:forge")
|
||||
|
||||
implementation(project(path: ":common")) {
|
||||
transitive = false
|
||||
|
|
Loading…
Reference in New Issue