This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
forked from bartimaeusnek/bartworks
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix HTGR not allowing insertion of coolant (#378)
* Fix HTGR not allowing insertion of coolant * Fix TGregworks dep Former-commit-id: 02b361a8871c41cddffd00ebf267b5bbd5427b07
- Loading branch information
Showing
3 changed files
with
19 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
// Add your dependencies here | ||
|
||
dependencies { | ||
api('com.github.GTNewHorizons:GT5-Unofficial:5.09.44.98:dev') | ||
api('com.github.GTNewHorizons:GT5-Unofficial:5.09.44.106:dev') | ||
api("com.github.GTNewHorizons:TecTech:5.3.20:dev") | ||
api("com.github.GTNewHorizons:GalacticGregGT5:1.0.10:dev") { | ||
exclude group:"com.github.GTNewHorizons", module:"bartworks" | ||
} | ||
api("com.github.GTNewHorizons:Avaritia:1.46:dev") | ||
implementation("com.github.GTNewHorizons:TinkersConstruct:1.10.12-GTNH:dev") | ||
|
||
compileOnly("com.github.GTNewHorizons:TinkersGregworks:GTNH-1.0.25-pre:dev") {transitive = false} | ||
compileOnly("TGregworks:TGregworks:1.7.10-GTNH-1.0.24:deobf") {transitive = false} | ||
compileOnly("com.github.GTNewHorizons:OpenComputers:1.9.19-GTNH:api") {transitive = false} | ||
} |
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,4 +1,16 @@ | ||
// Add any additional repositories for your dependencies here | ||
|
||
repositories { | ||
ivy { | ||
url 'https://files.vexatos.com/' | ||
patternLayout { | ||
artifact "[module]/[artifact]-[revision](-[classifier])(.[ext])" | ||
} | ||
content { | ||
includeGroup("TGregworks") | ||
} | ||
metadataSources { | ||
artifact() | ||
} | ||
} | ||
} |
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