[jboss-cvs] javassist ...

Shigeru Chiba chiba at is.titech.ac.jp
Thu Jul 3 03:56:24 EDT 2008


  User: chiba   
  Date: 08/07/03 03:56:24

  Modified:    javassist    Readme.html pom.xml build.xml
  Log:
  fixed a performance bug caused by many calls to CtBehavior#setBody()
  
  Revision  Changes    Path
  1.96      +5 -0      javassist/Readme.html
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Readme.html
  ===================================================================
  RCS file: /cvsroot/jboss/javassist/Readme.html,v
  retrieving revision 1.95
  retrieving revision 1.96
  diff -u -b -r1.95 -r1.96
  --- Readme.html	13 Jun 2008 10:32:05 -0000	1.95
  +++ Readme.html	3 Jul 2008 07:56:24 -0000	1.96
  @@ -281,6 +281,11 @@
   
   <h2>Changes</h2>
   
  +<p>-version 3.8.1
  +<ul>
  +	<li>CtClass.rebuildClassFile() has been added.
  +</ul>
  +
   <p>-version 3.8.0 on June 13, 2008
   <ul>
       <li>javassist.bytecode.analysis was implemented.
  
  
  
  1.7       +1 -17     javassist/pom.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: pom.xml
  ===================================================================
  RCS file: /cvsroot/jboss/javassist/pom.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- pom.xml	13 Jun 2008 10:32:05 -0000	1.6
  +++ pom.xml	3 Jul 2008 07:56:24 -0000	1.7
  @@ -1,13 +1,8 @@
   <project xmlns="http://maven.apache.org/POM/4.0.0"
   	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  -  <parent>
  -    <groupId>org.jboss</groupId>
  -    <artifactId>jboss-parent</artifactId>
  -    <version>3</version>
  -  </parent>
     <modelVersion>4.0.0</modelVersion>
  -  <groupId>org.jboss</groupId>
  +  <groupId>javassist</groupId>
     <artifactId>javassist</artifactId>
     <packaging>jar</packaging>
     <description>Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
  @@ -89,17 +84,6 @@
         </dependencies>
       </profile>
     </profiles>
  -  <repositories>
  -    <repository>
  -      <id>repository.jboss.org</id>
  -      <name>JBoss Inc. Repository</name>
  -      <layout>default</layout>
  -      <url>http://repository.jboss.org/maven2/</url>
  -      <snapshots>
  -        <enabled>false</enabled>
  -      </snapshots>
  -    </repository>
  -  </repositories>
     <dependencies>
       <dependency>
         <groupId>junit</groupId>
  
  
  
  1.37      +7 -8      javassist/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/javassist/build.xml,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -b -r1.36 -r1.37
  --- build.xml	13 Jun 2008 10:32:05 -0000	1.36
  +++ build.xml	3 Jul 2008 07:56:24 -0000	1.37
  @@ -180,14 +180,13 @@
       <delete file="${dist-version}.zip"/>
       <zip zipfile="${dist-version}.zip">
          <zipfileset dir="${basedir}" prefix="${dist-version}">
  -          <include name="**"/>
  -          <exclude name=".*"/>
  -          <exclude name=".*/**"/>
  -          <exclude name="build/**"/>
  -       	  <exclude name="local/**"/>
  -       	  <exclude name="eclipse-output/**"/>
  -          <exclude name="${dist-version}.zip"/>
  -          <exclude name="${target-src.jar}"/>
  +       	  <include name="html/**"/>
  +       	  <include name="sample/**"/>
  +       	  <include name="src/**"/>
  +       	  <include name="tutorial/**"/>
  +       	  <include name="*.html"/>
  +       	  <include name="*.xml"/>
  +       	  <include name="${target.jar}"/>
          </zipfileset>
       </zip>
     </target>
  
  
  



More information about the jboss-cvs-commits mailing list