-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow configurable timeouts and simplify local maven publishing #20
Conversation
this.allTasks.filter { it is Sign }.forEach { | ||
// disable sign for publishToLocalMaven | ||
it.onlyIf { !onlyLocalPublish } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This disables all sign tasks if we only do a publishToLocalMaven
. Is there anything against it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very nice, publishing to local is very helpful
var connectTimeout: Long = 300 | ||
var clientTimeout: Long = 300 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I set the defaults to 5m, might be a bit high? I didn't find any suggested defaults, the publishing plugin uses 60s, but I think we already had trouble with that, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
5m sounds reasonable, 60s is definitely too low
Fixes #19
Also disables singing and property checking for local maven releases.