You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by co...@apache.org on 2002/04/05 16:37:45 UTC

cvs commit: jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb EjbJar.java

conor       02/04/05 06:37:45

  Modified:    docs/manual/OptionalTasks ejb.html
               src/main/org/apache/tools/ant/taskdefs/optional/ejb
                        EjbJar.java
  Log:
  Toplink element is no longer required. The standard weblogic element
  can handle toplink based beans and has done so for a while
  
  Revision  Changes    Path
  1.21      +7 -1      jakarta-ant/docs/manual/OptionalTasks/ejb.html
  
  Index: ejb.html
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/docs/manual/OptionalTasks/ejb.html,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -w -u -r1.20 -r1.21
  --- ejb.html	27 Mar 2002 14:32:18 -0000	1.20
  +++ ejb.html	5 Apr 2002 14:37:45 -0000	1.21
  @@ -22,7 +22,7 @@
   </ul>
   
   <p>Version @VERSION@<br>
  -$Id: ejb.html,v 1.20 2002/03/27 14:32:18 ehatcher Exp $
  +$Id: ejb.html,v 1.21 2002/04/05 14:37:45 conor Exp $
   </p>
   <hr>
   <h2>Table of Contents</h2>
  @@ -1006,6 +1006,12 @@
   are useful when setting up class paths using reference Ids.</p>
   
   <h3>TOPLink for Weblogic element</h3>
  +
  +<p><b><i>Deprecated</i></b></p>
  +
  +<p>The toplink element is no longer required. Toplink beans can now be built with the standard
  +weblogic element, as long as the newCMP attribute is set to &quot;true&quot;
  +</p>
   
   <p>The TopLink element is used to handle beans which use Toplink for the CMP operations. It
   is derived from the standard weblogic element so it supports the same set of attributes plus these
  
  
  
  1.31      +3 -0      jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/EjbJar.java
  
  Index: EjbJar.java
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/EjbJar.java,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -w -u -r1.30 -r1.31
  --- EjbJar.java	18 Mar 2002 02:44:29 -0000	1.30
  +++ EjbJar.java	5 Apr 2002 14:37:45 -0000	1.31
  @@ -352,6 +352,9 @@
        * @return the deployment tool instance to be configured.
        */
       public WeblogicTOPLinkDeploymentTool createWeblogictoplink() {
  +        log("The <weblogictoplink> element is no longer required. Please use "
  +            + "the <weblogic> element and set newCMP=\"true\"", 
  +            Project.MSG_INFO); 
           WeblogicTOPLinkDeploymentTool tool 
               = new WeblogicTOPLinkDeploymentTool();
           tool.setTask(this);
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>