mega update
This commit is contained in:
parent
ed627ca2f6
commit
94549c51e0
13 changed files with 518 additions and 138 deletions
11
build.gradle
11
build.gradle
|
@ -12,6 +12,7 @@ repositories {
|
|||
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
|
||||
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
|
||||
// for more information about repositories.
|
||||
maven { url 'https://maven.wispforest.io' }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
@ -27,6 +28,16 @@ dependencies {
|
|||
// These are included in the Fabric API production distribution and allow you to update your mod to the latest modules at a later more convenient time.
|
||||
|
||||
// modImplementation "net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}"
|
||||
|
||||
modImplementation "io.wispforest:owo-lib:${project.owo_version}"
|
||||
// only if you plan to use owo-config
|
||||
annotationProcessor "io.wispforest:owo-lib:${project.owo_version}"
|
||||
|
||||
// include this if you don't want force your users to install owo
|
||||
// sentinel will warn them and give the option to download it automatically
|
||||
include "io.wispforest:owo-sentinel:${project.owo_version}"
|
||||
// https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple
|
||||
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
|
||||
}
|
||||
|
||||
base {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue