Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
RedstoneParadox authored Dec 23, 2020
1 parent 7cdbbb8 commit b2983d8
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Paradox Config

[ ![Download](https://api.bintray.com/packages/redstoneparadox/mods/paradox-config/images/download.svg?version=0.3.6-alpha) ](https://bintray.com/redstoneparadox/mods/paradox-config/0.3.6-alpha/link)
[ ![Download](https://api.bintray.com/packages/redstoneparadox/mods/ParadoxConfig/images/download.svg) ](https://bintray.com/redstoneparadox/mods/ParadoxConfig/_latestVersion)

A lightweight, Kotlin-based config API for Minecraft, formerly known as Paradox Config.

Expand All @@ -19,10 +19,31 @@ repositories {
dependencies {
// ...
modApi("io.github.redstoneparadox:paradox-config:VERSION") {
modApi("io.github.redstoneparadox:paradox-config:<version>") {
exclude group: 'net.fabricmc.fabric-api'
exclude group: 'net.fabricmc.fabric-language-kotlin'
}
include "io.github.redstoneparadox:paradox-config:VERSION"
include "io.github.redstoneparadox:ParadoxConfig:<version>"
}
```

(For versions prior to 0.4.0-beta:)

build.gradle:
```gradle
repositories {
maven {
url = "https://dl.bintray.com/io.github.redstoneparadox/mods"
}
}
dependencies {
// ...
modApi("io.github.redstoneparadox:paradox-config:<version>") {
exclude group: 'net.fabricmc.fabric-api'
exclude group: 'net.fabricmc.fabric-language-kotlin'
}
include "io.github.redstoneparadox:paradox-config:<version>"
}
```

0 comments on commit b2983d8

Please sign in to comment.