You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by ev...@apache.org on 2004/06/19 15:11:34 UTC

cvs commit: maven-plugins/jnlp plugin.jelly

evenisse    2004/06/19 06:11:34

  Modified:    jnlp     plugin.jelly
  Log:
  Check if maven.jnlp.signjar.store isn't empty
  
  Revision  Changes    Path
  1.29      +4 -1      maven-plugins/jnlp/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/jnlp/plugin.jelly,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- plugin.jelly	11 Jun 2004 09:19:47 -0000	1.28
  +++ plugin.jelly	19 Jun 2004 13:11:34 -0000	1.29
  @@ -280,7 +280,10 @@
           <!-- =========================== -->
           <!-- Copy jars in jnlp directory -->
           <!-- =========================== -->
  -        <ant:available file="${maven.jnlp.signjar.store}" property="maven.jnlp.store.exists"/>
  +        <j:set var="storeFileName" value="${maven.jnlp.signjar.store}"/>
  +        <j:if test="${!empty(storeFileName)}">
  +          <ant:available file="${maven.jnlp.signjar.store}" property="maven.jnlp.store.exists"/>
  +        </j:if>
           <j:choose>
             <j:when test="${maven.jnlp.store.exists}">
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org