Ported non-trivial app - builds and runs on Grails 4 (master, no release yet) JDK 11.0.1. Startup is about 15 seconds. (2x faster than Grails 3.3.9)
IDE Support all works in Grails 4 (same as 3.3.9)
Ported non-trivial app - builds and runs on Grails 4 (master, no release yet) JDK 11.0.1. Startup is about 15 seconds. (2x faster than Grails 3.3.9)
IDE Support all works in Grails 4 (same as 3.3.9)
| #!/usr/bin/python | |
| from __future__ import print_function | |
| import fileinput | |
| in_start_extras_section = False | |
| for line in fileinput.input("/etc/yum.repos.d/redhat-rhui.repo", inplace=True): | |
| if line.find("[rhui-REGION-rhel-server-extras]") != -1: | |
| in_start_extras_section = True |