forked from WayofTime/BloodMagic
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove pneumaticCraft API * Add WAILA support. * Mix of backport from 1.12 + I'm Looking At Blood mod (MIT)
- Loading branch information
1 parent
33f1f1b
commit b0c07eb
Showing
57 changed files
with
735 additions
and
2,361 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,43 @@ | ||
// Add your dependencies here | ||
/* | ||
* Add your dependencies here. Supported configurations: | ||
* - api("group:name:version:classifier"): if you use the types from this dependency in the public API of this mod | ||
* Available at runtime and compiletime for mods depending on this mod | ||
* - implementation("g:n:v:c"): if you need this for internal implementation details of the mod, but none of it is visible via the public API | ||
* Available at runtime but not compiletime for mods depending on this mod | ||
* - compileOnly("g:n:v:c"): if the mod you're building doesn't need this dependency during runtime at all, e.g. for optional mods | ||
* Not available at all for mods depending on this mod, only visible at compiletime for this mod | ||
* - runtimeOnly("g:n:v:c"): if you don't need this at compile time, but want it to be present at runtime | ||
* Available at runtime for mods depending on this mod | ||
* - annotationProcessor("g:n:v:c"): mostly for java compiler plugins, if you know you need this, use it, otherwise don't worry | ||
* - testCONFIG("g:n:v:c") - replace CONFIG by one of the above (except api), same as above but for the test sources instead of main | ||
* | ||
* - shadowImplementation("g:n:v:c"): effectively the same as API, but the dependency is included in your jar under a renamed package name | ||
* Requires you to enable usesShadowedDependencies in gradle.properties | ||
* | ||
* - compile("g:n:v:c"): deprecated, replace with "api" (works like the old "compile") or "implementation" (can be more efficient) | ||
* | ||
* You can exclude transitive dependencies (dependencies of the chosen dependency) by appending { transitive = false } if needed, | ||
* but use this sparingly as it can break using your mod as another mod's dependency if you're not careful. | ||
* | ||
* For more details, see https://docs.gradle.org/7.6/userguide/java_library_plugin.html#sec:java_library_configurations_graph | ||
*/ | ||
|
||
dependencies { | ||
|
||
compileOnly("com.github.GTNewHorizons:GT5-Unofficial:5.09.41.242:dev") { | ||
transitive = false | ||
} | ||
api("com.github.GTNewHorizons:waila:1.5.22:dev") | ||
api("com.github.GTNewHorizons:CodeChickenLib:1.1.5.7:dev") | ||
api("com.github.GTNewHorizons:NotEnoughItems:2.3.21-GTNH:dev") | ||
|
||
compileOnly("com.github.GTNewHorizons:GT5-Unofficial:5.09.41.242:dev") {transitive = false } | ||
|
||
compileOnly("com.github.GTNewHorizons:Botania:1.9.14-GTNH:api") { | ||
transitive = false | ||
} | ||
compileOnly("com.github.GTNewHorizons:ForestryMC:4.5.6:api") { | ||
transitive = false | ||
} | ||
compileOnly("com.github.GTNewHorizons:ForgeMultipart:1.3.1:dev") { | ||
transitive = false | ||
} | ||
compile("com.github.GTNewHorizons:CodeChickenLib:1.1.5.7:dev") | ||
compileOnly("com.github.GTNewHorizons:Botania:1.9.14-GTNH:api") {transitive = false } | ||
compileOnly("com.github.GTNewHorizons:ForestryMC:4.5.6:api") {transitive = false } | ||
compileOnly("com.github.GTNewHorizons:ForgeMultipart:1.3.1:dev") {transitive = false } | ||
|
||
compileOnly("com.github.GTNewHorizons:NotEnoughItems:2.3.21-GTNH:dev") { | ||
transitive = false | ||
} | ||
compileOnly("com.github.GTNewHorizons:Chisel:2.10.16-GTNH:api") { | ||
transitive = false | ||
} | ||
compileOnly("com.github.GTNewHorizons:Chisel:2.10.16-GTNH:api") {transitive = false } | ||
|
||
compileOnly("com.github.GTNewHorizons:ZenScript:1.0.0-GTNH") { | ||
transitive = false | ||
} | ||
compileOnly("com.github.GTNewHorizons:CraftTweaker:3.2.9:dev") { | ||
transitive = false | ||
} | ||
compileOnly("com.github.GTNewHorizons:ZenScript:1.0.0-GTNH") {transitive = false } | ||
compileOnly("com.github.GTNewHorizons:CraftTweaker:3.2.9:dev") {transitive = false } | ||
|
||
compileOnly("thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev") { | ||
transitive = false | ||
} | ||
compileOnly("curse.maven:guide-api-228832:2287185") { | ||
transitive = false | ||
} | ||
compileOnly("thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev") {transitive = false } | ||
compileOnly("curse.maven:guide-api-228832:2287185") {transitive = false } | ||
} |
Oops, something went wrong.