From 6c0229e91054752c44a69249888c2df03c3cb34c Mon Sep 17 00:00:00 2001 From: Paldiu Date: Wed, 14 Dec 2022 23:46:34 -0600 Subject: [PATCH] Update README.md --- README.md | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/README.md b/README.md index 0c300bc..f5606e4 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,60 @@ # SimplexSS + !(https://img.shields.io/github/workflow/status/SimplexDevelopment/SimplexSS/CodeQL/main) !(https://img.shields.io/github/v/release/SimplexDevelopment/SimplexSS?include_prereleases) !(https://img.shields.io/github/license/SimplexDevelopment/SimplexSS) !(https://img.shields.io/github/issues/SimplexDevelopment/SimplexSS) !(https://img.shields.io/github/stars/SimplexDevelopment/SimplexSS?style=social) !(https://img.shields.io/github/forks/SimplexDevelopment/SimplexSS?style=social) !(https://img.shields.io/github/languages/top/SimplexDevelopment/SimplexSS) + A reactive non blocking api for scheduling runnable tasks (called services) + +# Using SimplexSS in your project + In order to use SimplexSS in your project, you need to add the jitpack repository to your build.gradle or pom.xml file. + Here's an example, in Gradle: + + ```gradle + repositories { + maven { + id 'jitpack' + url 'https://jitpack.io' + } + } + ``` + + Then, you can add the dependency. + The `groupId` is `com.github.SimplexDevelopment` + The `artifactId` is `SimplexSS` + The `version` is `1.0.1-SNAPSHOT` + + It is recommended you use either the Maven Shade Plugin, + + ```maven + + + + org.apache.maven.plugins + maven-jar-plugin + ... + + + + true + path.to.MainClass + + + + ... + + + + ``` + + or the Gradle Shadow Plugin (com.github.johnrengelman.shadow). + + ```gradle + plugins { + id 'com.github.johnrengelman.shadow' version '7.1.2' + } + ``` + + Here is an example of the dependency, in Gradle: + ```gradle + dependencies { + shadow 'com.github.SimplexDevelopment:SimplexSS:1.0.1-SNAPSHOT' + } + ```