mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-10 12:33:57 +01:00
Updated Depending on Create (markdown)
parent
d20c47b395
commit
414d4a63d2
@ -19,7 +19,7 @@ Non-release jars of Create and Flywheel...
|
||||
- are published every time there is a new commit.
|
||||
- do have a build number.
|
||||
|
||||
Even though release jars do not have a build number, they were still built from a commit, which also has a corresponding non-release jar. This is to say that each release jar is associated to a unique, near identical non-release jar on the Maven.
|
||||
Even though release jars do not have a build number, they were still built from a commit, which also has a corresponding non-release jar. This is to say that each release jar is associated with a unique, near identical non-release jar on the Maven.
|
||||
|
||||
It is not advisable to depend on a non-release jar that does not have a corresponding release jar as it may contain code that does not exist in a release jar. Your mod may not work in production if it uses such code since users will be using a release jar as opposed to the non-release jar you depended on during development.
|
||||
|
||||
@ -56,7 +56,7 @@ 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}:slim") { transitive = false }
|
||||
implementation fg.deobf("com.simibubi.create:create-${create_minecraft_version}:${create_version}:all") { transitive = false }
|
||||
implementation fg.deobf("com.jozufozu.flywheel:flywheel-forge-${flywheel_minecraft_version}:${flywheel_version}")
|
||||
compileOnly fg.deobf("com.tterrag.registrate:Registrate:${registrate_version}")
|
||||
}
|
||||
@ -76,7 +76,7 @@ registrate_version = MC1.18.2-1.1.3
|
||||
|
||||
### Optional Development Environment Dependencies
|
||||
|
||||
If you have added a development environment dependency on Create, developing your mod may be easier if these optional dependencies are also included since Create has optional integrations with them.
|
||||
If you have added a development environment dependency on Create, developing your mod may be easier if these optional dependencies are also included since Create has integrations with them.
|
||||
|
||||
#### JEI
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user