aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Mitchell <mitchej@gmail.com>2023-04-22 13:47:57 -0700
committerJason Mitchell <mitchej@gmail.com>2023-04-22 13:47:57 -0700
commitebc0805f81c190689979c801b9454b44123384c7 (patch)
tree59c4182bfdff3720f040dadc2e7f2cbec02be0ef
parent17ca58a724858e3127ad7dced8c5febfbe697621 (diff)
downloadGT5-Unofficial-ebc0805f81c190689979c801b9454b44123384c7.tar.gz
GT5-Unofficial-ebc0805f81c190689979c801b9454b44123384c7.tar.bz2
GT5-Unofficial-ebc0805f81c190689979c801b9454b44123384c7.zip
update more deps
Former-commit-id: 4771f09f869fbd9d8f3248ca79fbda16df4d85a5
-rw-r--r--dependencies.gradle10
-rw-r--r--repositories.gradle32
2 files changed, 13 insertions, 29 deletions
diff --git a/dependencies.gradle b/dependencies.gradle
index 6882e5eafa..8d953fe85c 100644
--- a/dependencies.gradle
+++ b/dependencies.gradle
@@ -1,23 +1,23 @@
// Add your dependencies here
dependencies {
- api("com.github.GTNewHorizons:GT5-Unofficial:5.09.42.67-pre:dev")
+ api("com.github.GTNewHorizons:GT5-Unofficial:5.09.42.71:dev")
api("com.github.GTNewHorizons:TecTech:5.1.15-pre:dev")
implementation("com.github.GTNewHorizons:TinkersConstruct:1.9.26-GTNH:dev")
- api("com.github.GTNewHorizons:Galacticraft:3.0.67-GTNH:dev")
+
api("com.github.GTNewHorizons:GalacticGregGT5:1.0.8:dev") {
exclude group:"com.github.GTNewHorizons", module:"bartworks"
}
+
+ api("com.github.GTNewHorizons:Galacticraft:3.0.68-GTNH:dev")
api("com.github.GTNewHorizons:ModularUI:1.1.2:dev")
api("com.github.GTNewHorizons:Avaritia:1.37:dev")
+ compileOnly("TGregworks:TGregworks:1.7.10-GTNH-1.0.23:deobf") {transitive = false}
compileOnly("com.github.GTNewHorizons:AppleCore:3.2.10:dev") {
transitive = false
}
- compileOnly("com.github.GTNewHorizons:TinkersGregworks:master-SNAPSHOT:dev") {
- transitive = false
- }
compileOnly("com.github.GTNewHorizons:ForestryMC:4.6.5:api") {
transitive = false
}
diff --git a/repositories.gradle b/repositories.gradle
index df71a2210d..40118b1677 100644
--- a/repositories.gradle
+++ b/repositories.gradle
@@ -1,32 +1,16 @@
// Add any additional repositories for your dependencies here
repositories {
- mavenLocal()
- maven {
- name = "GTNH Maven"
- url = "http://jenkins.usrv.eu:8081/nexus/content/groups/public/"
- }
- maven {
- name "OpenComputers Repo"
- url = "http://maven.cil.li/"
- }
- maven {
- name = "sponge"
- url = "https://repo.spongepowered.org/repository/maven-public"
- }
- maven {
- name = "ic2"
- url = "http://maven.ic2.player.to/"
+ ivy {
+ url 'https://files.vexatos.com/'
+ patternLayout {
+ artifact "[module]/[artifact]-[revision](-[classifier])(.[ext])"
+ }
+ content {
+ includeGroup("TGregworks")
+ }
metadataSources {
- mavenPom()
artifact()
}
}
- maven {
- url "https://cursemaven.com"
- }
- maven {
- url = "https://jitpack.io"
- }
-
}