https://github.com/ocelot5836/sonar
Some simple utilities that are used in all of my mods
https://github.com/ocelot5836/sonar
Last synced: 3 months ago
JSON representation
Some simple utilities that are used in all of my mods
- Host: GitHub
- URL: https://github.com/ocelot5836/sonar
- Owner: Ocelot5836
- License: mit
- Created: 2019-06-06T22:52:18.000Z (about 6 years ago)
- Default Branch: 1.16.5
- Last Pushed: 2021-11-21T16:08:50.000Z (over 3 years ago)
- Last Synced: 2025-01-28T22:51:59.744Z (4 months ago)
- Language: Java
- Size: 1.15 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://jitpack.io/#Ocelot5836/Sonar)
# Sonar
General 1.16 Mod utilties in one spot so they can be added to future mods without having to clone code over.
# How to add to your workspace
```gradle
plugins {
id 'com.github.johnrengelman.shadow' version "4.0.4"
}configurations {
shade
}repositories {
maven {
name = "JitPack"
url = "https://jitpack.io"
}
}dependencies {
implementation fg.deobf("com.github.Ocelot5836:Sonar:version")
shade "com.github.Ocelot5836.Sonar:${project.sonar}"
}shadowJar {
configurations = [project.configurations.shade]
relocate 'io.github.ocelot', 'your.project.lib.ocelot'
}reobf {
shadowJar {}
}artifacts {
archives jar
archives shadowJar
}build.dependsOn reobfShadowJar
```