Skip to content

Commit

Permalink
[FIX JENKINS-45679] JNLP needs to request Java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-beck committed Jul 20, 2017
1 parent e952bba commit 99cf772
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -50,10 +50,10 @@ THE SOFTWARE.
<j:set var="port" value="${request.getParameter('debugPort')}"/>
<j:choose>
<j:when test="${port!=null}">
<j2se version="1.7+" java-vm-args="${it.launcher.vmargs} -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=${port}" />
<j2se version="1.8+" java-vm-args="${it.launcher.vmargs} -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=${port}" />
</j:when>
<j:otherwise>
<j2se version="1.7+" java-vm-args="${it.launcher.vmargs}"/>
<j2se version="1.8+" java-vm-args="${it.launcher.vmargs}"/>
</j:otherwise>
</j:choose>
<jar href="${rootURL}jnlpJars/remoting.jar"/>
Expand Down

0 comments on commit 99cf772

Please sign in to comment.