Workaround for gradle issue with jar signing.

This commit is contained in:
LexManos 2018-11-13 16:32:55 -08:00
parent c9f6da92f8
commit c3e52b499c

View file

@ -1,7 +1,7 @@
buildscript { buildscript {
repositories { repositories {
mavenLocal() mavenLocal()
maven { url = 'http://files.minecraftforge.net/maven' } maven { url = 'https://files.minecraftforge.net/maven' }
jcenter() jcenter()
mavenCentral() mavenCentral()
} }
@ -18,6 +18,7 @@ buildscript {
} }
apply plugin: 'net.minecraftforge.gradle' apply plugin: 'net.minecraftforge.gradle'
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup. //Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
apply plugin: 'eclipse'
repositories { repositories {
maven { url ='file://' + file('../repo').absolutePath } //Used by Forge development testing only, you can delete this. maven { url ='file://' + file('../repo').absolutePath } //Used by Forge development testing only, you can delete this.