File tree Expand file tree Collapse file tree
lib/java_buildpack/framework
spec/java_buildpack/framework Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ def release
3838 @droplet . java_opts
3939 . add_system_property ( 'java.rmi.server.hostname' , '127.0.0.1' )
4040 . add_system_property ( 'com.sun.management.jmxremote.authenticate' , false )
41+ . add_system_property ( 'com.sun.management.jmxremote.ssl' , false )
4142 . add_system_property ( 'com.sun.management.jmxremote.port' , port )
4243 . add_system_property ( 'com.sun.management.jmxremote.rmi.port' , port )
4344 end
Original file line number Diff line number Diff line change 3636 component . release
3737 expect ( java_opts ) . to include '-Djava.rmi.server.hostname=127.0.0.1'
3838 expect ( java_opts ) . to include '-Dcom.sun.management.jmxremote.authenticate=false'
39+ expect ( java_opts ) . to include '-Dcom.sun.management.jmxremote.ssl=false'
3940 expect ( java_opts ) . to include '-Dcom.sun.management.jmxremote.port=5000'
4041 expect ( java_opts ) . to include '-Dcom.sun.management.jmxremote.rmi.port=5000'
4142 end
4849 component . release
4950 expect ( java_opts ) . to include '-Djava.rmi.server.hostname=127.0.0.1'
5051 expect ( java_opts ) . to include '-Dcom.sun.management.jmxremote.authenticate=false'
52+ expect ( java_opts ) . to include '-Dcom.sun.management.jmxremote.ssl=false'
5153 expect ( java_opts ) . to include '-Dcom.sun.management.jmxremote.port=5001'
5254 expect ( java_opts ) . to include '-Dcom.sun.management.jmxremote.rmi.port=5001'
5355 end
You can’t perform that action at this time.
0 commit comments