Skip to content

Commit

Permalink
Update readme.md
Browse files Browse the repository at this point in the history
Fixed the issue in the mod dev dependency example where "-" should be "_". Also added a note about the additional required dependency if modders plan to use runData.
  • Loading branch information
Wmaxlees committed Sep 2, 2024
1 parent 17605ac commit 50183ed
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,21 @@ repositories {
3) Add the Domum Ornamentum API-jar as a Compile-time and the Domum Ornamentum Main-jar as a Run-time dependency:
```groovy
dependencies {
compileOnly fg.deobf("com.ldtteam:domum-ornamentum:${project.exactMinecraftVersion}-${project.DomumOrnamentumVersion}:api")
runtimeOnly fg.deobf("com.ldtteam:domum-ornamentum:${project.exactMinecraftVersion}-${project.DomumOrnamentumVersion}:universal")
compileOnly fg.deobf("com.ldtteam:domum_ornamentum:${project.exactMinecraftVersion}-${project.DomumOrnamentumVersion}:api")
runtimeOnly fg.deobf("com.ldtteam:domum_ornamentum:${project.exactMinecraftVersion}-${project.DomumOrnamentumVersion}:universal")
}
```

If you're planning on using data generation, you'll also need to include another dependency:

```groovy
implementation fg.deobf("com.ldtteam:datagenerators:1.19.3-${project.DataGeneratorsVersion}:universal") {
transitive = false
}
```

You can check the latest version of `datagenerators` [here](https://ldtteam.jfrog.io/ui/native/modding/com/ldtteam/datagenerators/).

#### <a name="SupportedBy"></a>Proudly supported by:
<h1 align="center">
<a name="logo" href="https://bisecthosting.com/ldtteam"><img src="https://media.discordapp.net/attachments/697517732219846766/727581811151995071/MinecoloniesLogo2Final.png" alt="BiSect Hosting LDTTeam link" width="300"></a>
Expand Down

0 comments on commit 50183ed

Please sign in to comment.