You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by di...@apache.org on 2004/03/31 07:45:37 UTC

cvs commit: maven-plugins/ejb/xdocs changes.xml

dion        2004/03/30 21:45:37

  Modified:    ejb      plugin.jelly
               ejb/xdocs changes.xml
  Log:
  Fix MPEJB-9.
  Don't add a Class-Path to the manifest if the entry is empty
  
  Revision  Changes    Path
  1.15      +4 -1      maven-plugins/ejb/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/ejb/plugin.jelly,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- plugin.jelly	4 Mar 2004 18:05:11 -0000	1.14
  +++ plugin.jelly	31 Mar 2004 05:45:37 -0000	1.15
  @@ -108,7 +108,10 @@
           <ant:attribute name="Built-By" value="${user.name}"/>
           <ant:attribute name="Created-By" value="Apache Jakarta Maven"/>
           <ant:attribute name="Package" value="${pom.package}"/>
  -        <ant:attribute name="Class-Path" value="${maven.ejb.classpath}"/>
  +        <j:set var="classPath" value="${maven.ejb.classpath}"/>
  +        <j:if test="${!empty(classPath)}">
  +          <ant:attribute name="Class-Path" value="${maven.ejb.classpath}"/>
  +        </j:if>
           <ant:section name="${pom.package}">
             <ant:attribute name="Specification-Title" value="${pom.artifactId}"/>
             <ant:attribute name="Specification-Vendor" value="${pom.organization.name}"/>
  
  
  
  1.14      +6 -0      maven-plugins/ejb/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/ejb/xdocs/changes.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- changes.xml	4 Mar 2004 18:05:11 -0000	1.13
  +++ changes.xml	31 Mar 2004 05:45:37 -0000	1.14
  @@ -24,6 +24,12 @@
     </properties>
     <body>
   
  +    <release version="1.4" date="in CVS">
  +      <action dev="dion" type="fix">
  +        Don't generate a Class-Path manfiest entry if there are no jars with ejb.manifest.classpath set to true
  +      </action>
  +    </release>
  +
       <release version="1.3" date="2004-01-29">
         <action dev="dion" type="fix">
           Only include maven.ejb.src if it exists
  
  
  

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