Return-Path: Delivered-To: apmail-jakarta-ant-dev-archive@apache.org Received: (qmail 25897 invoked from network); 5 Apr 2002 14:37:51 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 5 Apr 2002 14:37:51 -0000 Received: (qmail 11769 invoked by uid 97); 5 Apr 2002 14:37:49 -0000 Delivered-To: qmlist-jakarta-archive-ant-dev@jakarta.apache.org Received: (qmail 11747 invoked by uid 97); 5 Apr 2002 14:37:49 -0000 Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 11732 invoked by uid 97); 5 Apr 2002 14:37:48 -0000 Date: 5 Apr 2002 14:37:45 -0000 Message-ID: <20020405143745.4361.qmail@icarus.apache.org> From: conor@apache.org To: jakarta-ant-cvs@apache.org Subject: cvs commit: jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb EjbJar.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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 @@

Version @VERSION@
-$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 $


Table of Contents

@@ -1006,6 +1006,12 @@ are useful when setting up class paths using reference Ids.

TOPLink for Weblogic element

+ +

Deprecated

+ +

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 "true" +

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 element is no longer required. Please use " + + "the element and set newCMP=\"true\"", + Project.MSG_INFO); WeblogicTOPLinkDeploymentTool tool = new WeblogicTOPLinkDeploymentTool(); tool.setTask(this); -- To unsubscribe, e-mail: For additional commands, e-mail: