Jenkins: how to make parameters required in a parameterized build?

continuous-integration, jenkins

Solution

This is the plugin i use to do this type of stuff: link... You can set a regular expression to validate the input against

Problem

In Jenkins is there a plugin for parameterized builds to make the parameters required? The fields under the standard "This build is parameterized" option do not seem to provide that. Clarification: by "required" I mean that the build will not execute until the field is populated with a value. This would obviously preclude automated triggers.

Original source