Merge "Default groovy-postbuild to newest plugin format"
This commit is contained in:
commit
333fde2da8
@ -2445,7 +2445,9 @@ def groovy_postbuild(registry, xml_parent, data):
|
|||||||
}
|
}
|
||||||
# There are incompatible changes, we need to know version
|
# There are incompatible changes, we need to know version
|
||||||
info = registry.get_plugin_info('groovy-postbuild')
|
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
|
# Version specific predicates
|
||||||
matrix_parent_support = version >= pkg_resources.parse_version("1.9")
|
matrix_parent_support = version >= pkg_resources.parse_version("1.9")
|
||||||
security_plugin_support = version >= pkg_resources.parse_version("2.0")
|
security_plugin_support = version >= pkg_resources.parse_version("2.0")
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
- longName: 'Groovy Postbuild'
|
||||||
|
shortName: 'groovy-postbuild'
|
||||||
|
version: "1.0"
|
@ -0,0 +1,3 @@
|
|||||||
|
- longName: 'Groovy Postbuild'
|
||||||
|
shortName: 'groovy-postbuild'
|
||||||
|
version: "1.0"
|
Loading…
Reference in New Issue
Block a user