Merge "Default groovy-postbuild to newest plugin format"

This commit is contained in:
Jenkins 2017-09-20 00:41:26 +00:00 committed by Gerrit Code Review
commit 333fde2da8
3 changed files with 9 additions and 1 deletions

View File

@ -2445,7 +2445,9 @@ def groovy_postbuild(registry, xml_parent, data):
}
# There are incompatible changes, we need to know version
info = registry.get_plugin_info('groovy-postbuild')
version = pkg_resources.parse_version(info.get('version', "0"))
# Note: Assume latest version of plugin is preferred config format
version = pkg_resources.parse_version(
info.get('version', str(sys.maxsize)))
# Version specific predicates
matrix_parent_support = version >= pkg_resources.parse_version("1.9")
security_plugin_support = version >= pkg_resources.parse_version("2.0")

View File

@ -0,0 +1,3 @@
- longName: 'Groovy Postbuild'
shortName: 'groovy-postbuild'
version: "1.0"

View File

@ -0,0 +1,3 @@
- longName: 'Groovy Postbuild'
shortName: 'groovy-postbuild'
version: "1.0"