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/11 11:19:54 UTC

cvs commit: maven-plugins/jnlp/xdocs changes.xml properties.xml

evenisse    2004/06/11 02:19:53

  Modified:    jnlp     plugin.jelly
               jnlp/src/plugin-resources jnlp.manifest
               jnlp/xdocs changes.xml properties.xml
  Log:
  - MPJNLP-12. Documented the maven.jnlp.properties and made it work correctly.
  - Fix "Created By" in manifest
  
  Revision  Changes    Path
  1.28      +5 -1      maven-plugins/jnlp/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/jnlp/plugin.jelly,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- plugin.jelly	29 May 2004 13:28:15 -0000	1.27
  +++ plugin.jelly	11 Jun 2004 09:19:47 -0000	1.28
  @@ -198,7 +198,11 @@
   
                       <u:tokenize var="listOfProperties" delim=" ">${maven.jnlp.properties}</u:tokenize>
                       <j:forEach var="someProperty" items="${listOfProperties}">
  -                      <property name="${someProperty}" value="${context.getVariable(someProperty)}"/>
  +                      <u:tokenize var="nameAndValue" delim="=">${someProperty}</u:tokenize>
  +                      <j:if test="${someProperty.indexOf('=') ge 0}">
  +                        <u:tokenize var="nameAndValue" delim="=">${someProperty}</u:tokenize>
  +                        <property name="${nameAndValue.get(0)}" value="${nameAndValue.get(1)}"/>
  +                      </j:if>
                       </j:forEach>
                       
                   </resources>
  
  
  
  1.2       +1 -1      maven-plugins/jnlp/src/plugin-resources/jnlp.manifest
  
  Index: jnlp.manifest
  ===================================================================
  RCS file: /home/cvs/maven-plugins/jnlp/src/plugin-resources/jnlp.manifest,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- jnlp.manifest	21 Feb 2003 15:20:47 -0000	1.1
  +++ jnlp.manifest	11 Jun 2004 09:19:52 -0000	1.2
  @@ -1,3 +1,3 @@
   Manifest-Version: 1.0
  -Created-By: Apache Jakarta Maven
  +Created-By: Apache Maven
   
  
  
  
  1.17      +2 -0      maven-plugins/jnlp/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/jnlp/xdocs/changes.xml,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- changes.xml	28 May 2004 10:12:31 -0000	1.16
  +++ changes.xml	11 Jun 2004 09:19:53 -0000	1.17
  @@ -29,6 +29,8 @@
         <action dev="evenisse" type="fix" issue="MPJNLP-9">Initialize correctly jnlp:generate-keystore goal.</action>
         <action dev="evenisse" type="add" due-to="Pelle Braendgaard" issue="MPJNLP-8">Added Support for JarDiff.</action>
         <action dev="evenisse" type="add">Added maven.jnlp.signjar.storetype property.</action>
  +      <action dev="mvdb" type="fix">Documented the maven.jnlp.properties and made it work correctly</action>
  +      <action dev="mvdb" type="fix">Created By is now set to Apache Maven instead of Apache Jakarta Maven</action>
       </release>
       <release version="1.3" date="2004-03-10">
         <action dev="evenisse" type="add" issue="MPJNLP-7">Added extra property maven.jnlp.cert.version to support certificate renewals.</action>
  
  
  
  1.10      +11 -0     maven-plugins/jnlp/xdocs/properties.xml
  
  Index: properties.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/jnlp/xdocs/properties.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- properties.xml	28 May 2004 09:53:24 -0000	1.9
  +++ properties.xml	11 Jun 2004 09:19:53 -0000	1.10
  @@ -209,6 +209,17 @@
             </td>
           </tr>
           <tr>
  +          <td>maven.jnlp.properties</td>
  +          <td>Yes</td>
  +          <td>
  +            The arguments passed to the jvm. The arguments are seperated by a
  +            space. The argument itself is in the format name=value. This
  +            mechanism doesn't allow for spaces in any of the arguments itself.
  +          </td>
  +          <td>
  +          </td>
  +        </tr>
  +        <tr>
             <td>maven.jnlp.isapplet</td>
             <td>Yes</td>
             <td>
  
  
  

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