diff options
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | build.gradle | 11 |
2 files changed, 9 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore index db95f60f51..172ff53c26 100644 --- a/.gitignore +++ b/.gitignore @@ -101,6 +101,8 @@ local.properties # IDEA .idea/ *.iml +*.ipr +*.iws # Other backups @@ -144,4 +146,4 @@ GT++.ipr GT++.iws -out
\ No newline at end of file +out diff --git a/build.gradle b/build.gradle index 29c46faa7a..28cf353987 100644 --- a/build.gradle +++ b/build.gradle @@ -4,15 +4,16 @@ buildscript { mavenCentral() jcenter() maven { - name = "gt" - url = "https://gregtech.overminddl1.com/" + name = "jitpack" + url = "https://jitpack.io" } maven { - name = "sonatype" - url = "https://oss.sonatype.org/content/repositories/snapshots/" + name = "forge" + url = "https://maven.minecraftforge.net" } maven { - url = "https://plugins.gradle.org/m2/" + name = "sonatype" + url = "https://oss.sonatype.org/content/repositories/snapshots/" } } dependencies { |