[jboss-cvs] JBossCache ...

Manik Surtani msurtani at jboss.com
Wed Jan 10 09:08:14 EST 2007


  User: msurtani
  Date: 07/01/10 09:08:14

  Modified:    JBossCache  build.xml
  Log:
  Updated to fix javadoc task + updated version to BETA1
  
  Revision  Changes    Path
  1.166     +17 -18    JBossCache/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/build.xml,v
  retrieving revision 1.165
  retrieving revision 1.166
  diff -u -b -r1.165 -r1.166
  --- build.xml	10 Jan 2007 13:05:49 -0000	1.165
  +++ build.xml	10 Jan 2007 14:08:14 -0000	1.166
  @@ -1,12 +1,12 @@
   <?xml version="1.0" encoding="UTF-8"?>
   
  -<!-- $Id: build.xml,v 1.165 2007/01/10 13:05:49 msurtani Exp $ -->
  +<!-- $Id: build.xml,v 1.166 2007/01/10 14:08:14 msurtani Exp $ -->
   
   <project default="compile" name="JBossCache">
   
      <property name="module.name" value="JBossCache"/>
      <!--We now requires version to have no white space since Ant+JBossAop will sometime choke. -->
  -   <property name="module.version" value="2.0.0.ALPHA2"/>
  +   <property name="module.version" value="2.0.0.BETA1"/>
      <property name="implementation.url" value="http://www.jboss.com/products/jbosscache"/>
      <property file="build.properties"/>
      <property name="root.dir" value="${basedir}"/>
  @@ -415,28 +415,27 @@
      <!-- ================================================================== -->
      <target name="javadocs" description="Create Javadoc documentation in the ./doc/javadoc directory">
         <javadoc packagenames="${javadoc.packages}"
  -               sourcepath="${src.dir}"
                  destdir="${build.api}"
                  classpathref="library.classpath"
                  author="true"
                  version="true"
                  use="true"
  -               bottom="Copyright &#169; 1998-2005 JBoss Inc . All Rights Reserved."
  -               useexternalfile="yes"/>
  -   </target>
  +               windowtitle="${module.name} - ${module.version} API"
  +               useexternalfile="yes">
   
  -   <target name="javadocs50" description="Create Javadoc documentation in the ./doc/javadoc directory">
  -      <javadoc packagenames="${javadoc.packages}"
  -               sourcepath="${src.dir.50}"
  -               destdir="${build.api}"
  -               classpathref="library.classpath"
  -               author="true"
  -               version="true"
  -               use="true"
  -               bottom="Copyright &#169; 1998-2005 JBoss Inc . All Rights Reserved."
  -               useexternalfile="yes"/>
  -   </target>
  +         <doctitle>${module.name} - ${module.version} API</doctitle>
  +         <bottom>
  +            <![CDATA[<p align="center><i><b>Copyright &#169; 1998-2007 Red Hat Inc.</b> All Rights Reserved.</i></p>]]></bottom>
  +         <fileset dir="${src.dir}" defaultexcludes="yes">
  +            <include name="org/jboss/**"/>
  +         </fileset>
   
  +         <fileset dir="${src.dir.50}" defaultexcludes="yes">
  +            <include name="org/jboss/**"/>
  +         </fileset>
  +
  +      </javadoc>
  +   </target>
   
      <target name="version" description="Prints version of JBossCache">
         <java classname="org.jboss.cache.Version" classpath="${compile.dir}"/>
  @@ -1049,7 +1048,7 @@
      <!-- ================================================================== -->
   
      <target name="dist" description="Creates a full standalone distribution"
  -           depends="jar, docs, javadocs, javadocs50">
  +           depends="jar, docs, javadocs">
         <!-- re-enable retroweaving once JBOss Retro bug is fixed.  See JBCACHE-664 -->
         <!--depends="jar, jar-retro, docs, javadocs, javadocs50">-->
   
  
  
  



More information about the jboss-cvs-commits mailing list