Updated Depending on Create (markdown)

PepperCode1 2022-09-25 16:29:50 -07:00
parent a60c61c269
commit a0e9111de2

@ -1,7 +1,7 @@
# Depending on Create
### Create version: **0.5.0.d**
### Minecraft version: **1.18.2**
### Create version: **0.5.0.e**
### Minecraft version: **1.18.2/1.19.2**
The information on this page describes how a developer can add a dependency on Create.
@ -56,22 +56,32 @@ Add the following code to the `dependencies` block of your `build.gradle`. It de
```groovy
dependencies {
implementation fg.deobf("com.simibubi.create:create-${create_minecraft_version}:${create_version}:all") { transitive = false }
implementation fg.deobf("com.simibubi.create:create-${create_minecraft_version}:${create_version}:slim") { transitive = false }
implementation fg.deobf("com.jozufozu.flywheel:flywheel-forge-${flywheel_minecraft_version}:${flywheel_version}")
compileOnly fg.deobf("com.tterrag.registrate:Registrate:${registrate_version}")
implementation fg.deobf("com.tterrag.registrate:Registrate:${registrate_version}")
}
```
Add the following properties to your `gradle.properties`.
For 1.18.2
```properties
create_minecraft_version = 1.18.2
flywheel_minecraft_version = 1.18.2
create_version = 0.5.0.d-168
flywheel_version = 0.6.5-91
create_version = 0.5.0.e-195
flywheel_version = 0.6.6-94
registrate_version = MC1.18.2-1.1.3
```
For 1.19.2
```properties
create_minecraft_version = 1.19.2
flywheel_minecraft_version = 1.19.2
create_version = 0.5.0.e-13
flywheel_version = 0.6.6-6
registrate_version = MC1.19-1.1.5
```
---
### Optional Development Environment Dependencies
@ -80,15 +90,15 @@ If you have added a development environment dependency on Create, developing you
#### JEI
Follow the instructions on the [JEI wiki](https://github.com/mezz/JustEnoughItems/wiki/Getting-Started-%5B1.13-to-1.18.2%5D).
Follow the instructions on the JEI wiki [here (1.18.2)](https://github.com/mezz/JustEnoughItems/wiki/Getting-Started-%5B1.13-to-1.18.2%5D) or [here (1.19.2)](https://github.com/mezz/JustEnoughItems/wiki/Getting-Started-%5BJEI-10-or-higher-for-Forge-or-Fabric%5D).
The recommended JEI version for the current release is **9.7.0.209**.
The recommended JEI version for the current release is **9.7.0.209** (1.18.2) or **11.2.0.254** (1.19.2).
#### Curios
Follow the instructions provided in the [README of the Curios repository](https://github.com/TheIllusiveC4/Curios#adding-to-your-project).
The recommended Curios version for the current release is **5.0.7.0**.
The recommended Curios version for the current release is **5.0.7.0** (1.18.2) or **5.1.1.0** (1.19.2).
---
@ -104,7 +114,7 @@ Add the following lines to your `mods.toml`, replacing `modid` with your mod's I
[[dependencies.modid]]
modId="create"
mandatory=true
versionRange="[0.5.0.d,)"
versionRange="[0.5.0.e,)"
ordering="NONE"
side="BOTH"
```