From 5f62e2f9fe4c7518846a448d6a16fdb30152cf3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madis=20P=C3=A4rn?= Date: Fri, 20 Oct 2017 11:50:02 +0300 Subject: [PATCH 1/2] Fixed JRebel documentation links --- docs/framework-jrebel_agent.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/framework-jrebel_agent.md b/docs/framework-jrebel_agent.md index c1c6a5f6c8..a8923c3058 100644 --- a/docs/framework-jrebel_agent.md +++ b/docs/framework-jrebel_agent.md @@ -5,7 +5,7 @@ The JRebel Agent Framework causes an application to be automatically configured - + @@ -29,9 +29,9 @@ The framework can be configured by modifying the [`config/jrebel_agent.yml`][] f [Configuration and Extension]: ../README.md#configuration-and-extension [`config/jrebel_agent.yml`]: ../config/jrebel_agent.yml -[JRebel Cloud/Remote]: http://manuals.zeroturnaround.com/jrebel/remoting/index.html +[JRebel Cloud/Remote]: http://manuals.zeroturnaround.com/jrebel/remoteserver/index.html [JRebel]: http://zeroturnaround.com/software/jrebel/ -[pivotal]: http://manuals.zeroturnaround.com/jrebel/remoting/pivotal.html +[pivotal]: http://manuals.zeroturnaround.com/jrebel/remoteserver/pivotal.html [repositories]: extending-repositories.md [this listing]: http://dl.zeroturnaround.com/jrebel/index.yml [version syntax]: extending-repositories.md#version-syntax-and-ordering From 7b1763bff17bcaa46bf8b352c8894e5efe4eb485 Mon Sep 17 00:00:00 2001 From: Madis Parn Date: Fri, 20 Oct 2017 12:39:16 +0300 Subject: [PATCH 2/2] Added support from detecting rebel-remote.xml with spring-boot --- lib/java_buildpack/framework/jrebel_agent.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/java_buildpack/framework/jrebel_agent.rb b/lib/java_buildpack/framework/jrebel_agent.rb index 27816b2efb..0cb0341251 100644 --- a/lib/java_buildpack/framework/jrebel_agent.rb +++ b/lib/java_buildpack/framework/jrebel_agent.rb @@ -49,6 +49,7 @@ def supports? enabled? && ( jrebel_configured?(@application.root) || jrebel_configured?(@application.root + 'WEB-INF/classes') || + jrebel_configured?(@application.root + 'BOOT-INF/classes') || jars_with_jrebel_configured?(@application.root)) end
Detection CriterionExistence of a rebel-remote.xml file inside the application archive. This file is present in every application that is configured to use JRebel Cloud/Remote.Existence of a rebel-remote.xml file inside the application archive. This file is present in every application that is configured to use JRebel Cloud/Remote.
Tags