costin      2003/03/13 10:11:59

  Modified:    modeler  build.xml
  Added:       modeler  RELEASE-NOTES-1.1.txt
  Log:
  Added release notes for 1.1
  
  Update the build.xml
  
  Added "index=true" to jar to speed up on 1.3+
  
  Revision  Changes    Path
  1.9       +6 -5      jakarta-commons/modeler/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/modeler/build.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- build.xml 16 Jan 2003 19:23:28 -0000      1.8
  +++ build.xml 13 Mar 2003 18:11:59 -0000      1.9
  @@ -212,9 +212,10 @@
     </target>
   
     <target name="jar" depends="compile-only" > 
  -    <jar    jarfile="${commons-modeler.jar}"
  -            basedir="${build.home}/classes"
  -           manifest="src/conf/MANIFEST.MF">
  +    <jar jarfile="${commons-modeler.jar}"
  +         index="true"
  +         basedir="${build.home}/classes"
  +         manifest="src/conf/MANIFEST.MF">
          <include name="org/apache/commons/modeler/**" />
          <include name="META-INF/ant.properties" />
       </jar>
  @@ -224,7 +225,7 @@
       description="Create binary distribution">
       <copy      file="../LICENSE"
                 todir="${dist.home}"/>
  -    <copy      file="RELEASE-NOTES.txt"
  +    <copy      file="RELEASE-NOTES**.txt"
                 todir="${dist.home}"/>
       <copy      file="src/java/org/apache/commons/modeler/mbeans-descriptors.dtd"
                 todir="${dist.home}"/>
  
  
  
  1.1                  jakarta-commons/modeler/RELEASE-NOTES-1.1.txt
  
  Index: RELEASE-NOTES-1.1.txt
  ===================================================================
  $Id: RELEASE-NOTES-1.1.txt,v 1.1 2003/03/13 18:11:59 costin Exp $
  
                            Commons Modeler Package
                                  Version 1.1
                                 Release Notes
  
  
  INTRODUCTION:
  ============
  
  This document contains the release notes for this version of the Commons
  Modeler package, and highlights changes since the previous version.
  
  
  NEW FEATURES:
  ============
  
  * support for components that are not explicitely declared. Introspection and common
  patterns are used to expose all attributes and simple methods with known type.
  
  * new parser using DOM. That reduces the dependencies, is a bit faster and allows 
more
  flexibility in processing the input
   
  * support serialization of the model, and loading the .ser format. Serialization is 
  implemented using an ant task, and all objects in the model are serializable. 
Reading the
  .ser form is much faster than processing the XML
  
  * a set of ant tasks that use modeler to load metadata and operate on mbeans. The 
tasks
  can be used with any JMX component, not only with modeler. An example use is tomcat5.
  
  * support for loading extended mlet files, with a syntax consistent with the ant 
tasks
  and jboss ( and other ). 
  
  * helper to perform lifecycle operations on sets of mbeans
  
  * a small startup program ( org.apache.commons.modeler.Main ) capable of loading an 
mlet
  file and performing init/start on all components. This can help in testing and 
jumpstarting
  small applications.
  
  * cleaner APIs, with deprecation of static methods.
  
  
  BUG REPORTS ADDRESSED:
  =====================
  
  All bugs reported against modeler have been fixed.
  
  * XXX Attribute change notifications not beeing sent
  * 
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to