[Fabric 1.18 branch] Trying to build from source fails
bravely-beep opened this issue ยท 3 comments
A problem occurred evaluating root project 'YUNGs-API'.
> Could not get unknown property 'ossrhUsername' for Credentials [username: null] of type org.gradle.internal.credentials.DefaultPasswordCredentials_Decorated.
I just encountered a problem with this today and the solution mentioned in NeuronRobotics/nrjavaserial#123 fixed it for me. Basically, replace the credentials
field near the bottom of the build.gradle with
credentials {
username hasProperty('ossrhUsername')?ossrhUsername:''
password hasProperty('ossrhPassword')?ossrhPassword:''
}
Also submitted a PR: #30