Go to file
samo_lego 14fcda580e Fixing #12 2020-08-02 17:39:04 +02:00
.github Update bug_report.md 2020-07-27 10:09:27 +02:00
gradle/wrapper Gradle update 2020-06-10 22:39:02 +02:00
src/main Fixing #12 2020-08-02 17:39:04 +02: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 Implementing bytes library 2020-07-29 14:03:10 +02:00
build.gradle Javadoc-ing 2020-08-02 14:55:52 +02:00
gradle.properties Implementing bytes library 2020-07-29 14:03:10 +02: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
renaming.sh Build renaming updated 2020-05-04 16:51:37 +02:00
settings.gradle Config added 2019-12-30 20:19:53 +01:00

README.md

Simple Authentication Mod

License Gradle Build 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