Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hypherionmc/sdlink-lib
The common library code for my Simple Discord Link bot
https://github.com/hypherionmc/sdlink-lib
Last synced: 25 days ago
JSON representation
The common library code for my Simple Discord Link bot
- Host: GitHub
- URL: https://github.com/hypherionmc/sdlink-lib
- Owner: hypherionmc
- License: mit
- Created: 2021-10-15T20:22:34.000Z (about 3 years ago)
- Default Branch: v3
- Last Pushed: 2023-09-30T12:25:48.000Z (about 1 year ago)
- Last Synced: 2024-07-12T12:20:59.846Z (4 months ago)
- Language: Java
- Size: 306 KB
- Stars: 2
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.txt
Awesome Lists containing this project
README
### SDLink Library
This is the library with common code used by my Simple Discord Link bot mod. This is only here as a backup and so others can see what I do. Not intended to be used by other mods
***
#### Building Instructions (For contributors)
For 1.16.5:
```gradle
// Pack OSHI into jar, since MC uses an incompatible version
gradlew build -Poshi_hack=true// To Publish
gradlew publish -Poshi_hack=true// Publish to mavenLocal()
gradlew publishToMavenLocal -Poshi_hack=true
```For 1.17+:
```gradle
// Pack OSHI into jar, since MC uses an incompatible version
gradlew build// To Publish
gradlew publish// Publish to mavenLocal()
gradlew publishToMavenLocal
```