Go to file
samo_lego e020797d0c More debuging options 2020-11-01 17:58:17 +01:00
.github File name update 2020-10-11 22:19:54 +02:00
gradle/wrapper Gradle update 2020-06-10 22:39:02 +02:00
src/main More debuging options 2020-11-01 17:58:17 +01:00
.gitattributes Initial commit 2019-10-22 16:37:09 +02:00
.gitignore Initalization 2019-10-24 22:13:52 +02:00
LICENSE Initial commit 2019-10-22 16:37:09 +02:00
README.md Minor changes 2020-08-23 22:04:02 +02:00
build.gradle Loom update 2020-10-10 20:46:02 +02:00
gradle.properties Version bump 2020-10-31 22:34:25 +01:00
gradlew Gradle & Library update. 2020-04-05 21:56:00 +02:00
gradlew.bat Gradle & Library update. 2020-04-05 21:56:00 +02:00
settings.gradle Config added 2019-12-30 20:19:53 +01:00

README.md

Simple Authentication Mod

License Fabric CI Version Closed Issues Curseforge downloads

Requires Fabric API.

License

Libraries that the project is using:

This project is licensed under the MIT license.

For mod developers

Changing code

  1. Clone the repository. Then run ./gradlew genSources
  2. Edit the code you want.
  3. To build run the following command:
./gradlew build

Adding the mod to your buildscript (to ensure compatibility)

Add following text to your build.gradle

repositories {
	maven {
		url 'https://jitpack.io'
	}
}

dependencies {
  // By version tag
  modImplementation 'com.github.samolego:SimpleAuth:${project.simpleauth_version}'
  
  // Or by branch
  modImplementation 'com.github.samolego:SimpleAuth:${project.simpleauth_branch}-SNAPSHOT'
}

And this to your gradle.properties

# By tag (version)
# SimpleAuth version (this might not be the latest version)
simpleauth_version = 1.4.8

# Or this (by branch)
# SimpleAuth branches

# master branch (the latest version for stable minecraft release)
simpleauth_branch = master

# snapshot branch (branch for minecraft snapshots)
simpleauth_branch = latest-snapshot