Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOnlyTails committed Jun 8, 2021
2 parents 2ff50da + 186c850 commit b058b12
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.theonlytails/loottables/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.theonlytails/loottables)
![Maven metadata URL](https://img.shields.io/maven-metadata/v?color=blue&label=maven%20central&logo=gradle&metadataUrl=https%3A%2F%2Fs01.oss.sonatype.org%2Fservice%2Flocal%2Frepositories%2Freleases%2Fcontent%2Fcom%2Ftheonlytails%2Floottables%2Fmaven-metadata.xml&style=flat-square)

# LootTables

A Kotlin DSL for creating loot tables in Minecraft Forge mods.

For documentation and usage instructions, please take a look at the [wiki](https://github.com/TheOnlyTails/LootTables/wiki).

Here's the [`maven-metadata.xml`](https://s01.oss.sonatype.org/service/local/repositories/releases/content/com/theonlytails/loottables/maven-metadata.xml) of this library.

## Installation

###### Don't forget to replace the VERSION key with the version in the top with the Maven Central badge at the top!
Expand All @@ -18,9 +20,7 @@ repositories {
}
dependencies {
implementation fg.deobf(project.dependencies.create(group: "com.theonlytails", name: "loottables", version: VERSION) {
transitive = false
})
implementation group: "com.theonlytails", name: "loottables", version: VERSION
}
```

Expand All @@ -31,11 +31,6 @@ repositories {
}

dependencies {
implementation(project.the<DependencyManagementExtension>()
.deobf(project.dependencies.create(group = "com.theonlytails", name = "loottables", version = VERSION)
.apply {
isTransitive = false
}
))
implementation(group = "com.theonlytails", name = "loottables", version = VERSION)
}
```

0 comments on commit b058b12

Please sign in to comment.