An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

[![Release](https://jitpack.io/v/Ocelot5836/Sonar.svg)](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
```