-
Notifications
You must be signed in to change notification settings - Fork 53
Conversation
…ature abstraction.
…stead. The prompt was default and would activate when called from a setting.
I think prompting is a useful feature: it's more active then just blurting out an error message. Could you describe the use case that lead you to want to tear this out? There may be a way to support it without this removal. |
What prompted me to remove the prompt was that it was activated while trying to resolve the credentials in a setting, prohibiting project load. I considered just passing the When using sbt-bintray, I personally never found the prompt particularly useful. The process was usually this:
Overall, I don't think the added complexity is worth maintaining at this point. |
I am also for removing this feature.
|
I setup my bintray credentials a long time ago, and then versioned them with the rest of my dotfiles, but I'm pretty sure my experience was really pleasant: I ran |
|
Because changeCredentials uses ensuredCredentials, wouldn't it spit a warning message now? |
You're right. I'll fix that. |
there you go. also included: fix for |
+1 to removal |
If this is ok, I'd appreciate a quick snapshot/gitversion release, as I would like to contribute a continuous deployment process based on it |
Removes the prompt from
ensuredCredentials
and gives information on how to set the credentials instead. This is because the current version usesensuredCredentials
with prompt even when loading the setting, and the whole prompt logic is kind of too messy and there's different ways to set the credentials now.Also gets rid of most of the printlns by passing loggers around. (addresses #114 #115)