You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by mu...@apache.org on 2005/08/03 19:23:35 UTC

cvs commit: xml-security build.xml

mullan      2005/08/03 10:23:35

  Modified:    .        Tag: jsr105_0_16 build.xml
  Log:
  Modify build.src target and build.docs target to build JSR 105 source
  and javadocs.
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.82.2.1  +11 -12    xml-security/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-security/build.xml,v
  retrieving revision 1.82
  retrieving revision 1.82.2.1
  diff -u -r1.82 -r1.82.2.1
  --- build.xml	21 Feb 2005 19:14:17 -0000	1.82
  +++ build.xml	3 Aug 2005 17:23:35 -0000	1.82.2.1
  @@ -77,10 +77,6 @@
   	<property name="jar.tests"          value="${dir.build}/xmlsecTests-${product.version}.jar" />
   	<property name="jar.manifest"       value="${dir.manifest}/MANIFEST.MF"/>
       
  -    <!-- javadoc properties -->
  -    <property name="javadoc.packages" value=" org.apache.xml.security.Init, org.apache.xml.security.algorithms, org.apache.xml.security.c14n, org.apache.xml.security.encryption, org.apache.xml.security.exceptions, org.apache.xml.security.keys, org.apache.xml.security.keys.content, org.apache.xml.security.keys.content.keyvalues, org.apache.xml.security.keys.content.x509, org.apache.xml.security.keys.keyresolver, org.apache.xml.security.keys.storage, org.apache.xml.security.signature, org.apache.xml.security.transforms, org.apache.xml.security.transforms.params, org.apache.xml.security.utils, org.apache.xml.security.utils.resolver "/>
  -
  -
   
       <!-- build variable properties -->
   
  @@ -299,6 +295,7 @@
                  debug="${build.compile.debug}">
               <classpath refid="id.classpath" />
               <include name="**/org/apache/xml/security/**/*.java" />
  +            <include name="**/javax/xml/crypto/**/*.java" />
           </javac >
   
           <copy todir="${dir.build.bin}" >
  @@ -680,15 +677,17 @@
   
       <!-- documentation -->
       <target name="build.docs">
  -		<mkdir dir="${dir.build.javadoc}"/>
  -		<javadoc classpathref="id.classpath"
  -				 destdir="${dir.build.javadoc}"
  -				 packagenames="${javadoc.packages}">
  -        	<sourcepath>
  -          		<pathelement location="${dir.src}"/>
  -	        </sourcepath>
  +	<mkdir dir="${dir.build.javadoc}"/>
  +	<javadoc classpathref="id.classpath"
  +		 destdir="${dir.build.javadoc}">
  +	    <packageset dir="${dir.src}">
  +      		<include name="org/apache/xml/security/**"/>
  +      		<include name="javax/xml/crypto/**"/>
  +            </packageset>
  +            <group title="JSR 105 Packages" packages="javax.xml.crypto*"/>
  +            <group title="XMLSec Packages" packages="org.apache.xml.security*"/>
       	</javadoc>
  -	</target>
  +    </target>
   
   	<target name="build.xdocs"
   			depends="do.check.forrest"