Obfuscate Build Error!
loli252 opened this issue ยท 4 comments
I have add the Obfuscate Build Scipt in my Build.gradle and now make it problems!
Could not find curse.maven:obfuscate:3043368_mapped_snapshot_20200514-1.15.1.
Build.gradle
repositories {
maven {
url = "https://www.cursemaven.com"
}
}
dependencies {
compile fg.deobf('curse.maven:obfuscate:3043368')
}
As @MrScautHD mentioned.
i think the Problem is Curseforge change to Overwolf but no idea how fix this now :/
If that's the case, I can't do much about it for now. I plan to host my own maven at some point so I don't have to rely on CurseForge.
@loli252 @MrCrayfish the change to Overwolf have Changed the Projekt id.
With this code is it working:
repositories {
maven {
url = "https://www.cursemaven.com"
}
}
dependencies {
compile fg.deobf("curse.maven:obfuscate-289380:3043368")
}