Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/framework-jrebel_agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The JRebel Agent Framework causes an application to be automatically configured
<table>
<tr>
<td><strong>Detection Criterion</strong></td>
<td>Existence of a <tt>rebel-remote.xml</tt> file inside the application archive. This file is present in every application that is configured to use <a href="http://manuals.zeroturnaround.com/jrebel/remoting/index.html" target="_blank">JRebel Cloud/Remote</a>.</td>
<td>Existence of a <tt>rebel-remote.xml</tt> file inside the application archive. This file is present in every application that is configured to use <a href="http://manuals.zeroturnaround.com/jrebel/remoteserver/index.html" target="_blank">JRebel Cloud/Remote</a>.</td>
</tr>
<tr>
<td><strong>Tags</strong></td>
Expand All @@ -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
1 change: 1 addition & 0 deletions lib/java_buildpack/framework/jrebel_agent.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down