SimplexSS/README.md

68 lines
1.9 KiB
Markdown
Raw Normal View History

# SimplexSS
2022-12-15 05:48:27 +00:00
2022-12-15 05:48:44 +00:00
![](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)
2022-12-15 05:46:34 +00:00
A reactive non blocking api for scheduling runnable tasks (called services)
2022-12-15 05:46:34 +00:00
# Using SimplexSS in your project
2022-12-15 05:48:27 +00:00
2022-12-15 05:46:34 +00:00
In order to use SimplexSS in your project, you need to add the jitpack repository to your build.gradle or pom.xml file.
2022-12-15 05:48:27 +00:00
2022-12-15 05:46:34 +00:00
Here's an example, in Gradle:
```gradle
repositories {
maven {
id 'jitpack'
url 'https://jitpack.io'
}
}
```
Then, you can add the dependency.
2022-12-15 05:48:27 +00:00
2022-12-15 05:46:34 +00:00
The `groupId` is `com.github.SimplexDevelopment`
2022-12-15 05:48:27 +00:00
2022-12-15 05:46:34 +00:00
The `artifactId` is `SimplexSS`
2022-12-15 05:48:27 +00:00
2022-12-15 05:46:34 +00:00
The `version` is `1.0.1-SNAPSHOT`
It is recommended you use either the Maven Shade Plugin,
```maven
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
...
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>path.to.MainClass</mainClass>
</manifest>
</archive>
</configuration>
...
</plugin>
</plugins>
</build>
```
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:
2022-12-15 05:48:27 +00:00
2022-12-15 05:46:34 +00:00
```gradle
dependencies {
shadow 'com.github.SimplexDevelopment:SimplexSS:1.0.1-SNAPSHOT'
}
```