StrongJoshua / libgdx-inGameConsole

A LibGdx library that allows a developer to add a console (similar to how it is featured in Source games) to their game.
https://www.strongjoshua.net/projects/games/libgdx-ingame-console
Apache License 2.0
131 stars 35 forks source link

Signing stuff on Gradle causes problems #32

Closed BenMcLean closed 6 years ago

BenMcLean commented 6 years ago

I get jars of libgdx-inGameConsole made through Jitpack. As this build log shows, the signing stuff in build.gradle causes the build to fail, presumably for anyone using gradle except StrongJoshua himself.

I've been able to work around this over on my fork by simply stripping out all signing related stuff from build.gradle. But what you'll probably want to do to address this is to configure gradle properly so that it only attempts this signing stuff on request.

playmyskay commented 6 years ago

maybe you simply have to add a file named "gradle.properties" with the following content:

ossrhUsername=
ossrhPassword= 

Hope this helps.

StrongJoshua commented 6 years ago

@playmyskay Is right. You need to specify a signing identity. It should let you sign because nothing in the signing portion of the build.gradle is specific to any key.