build-defs.xml

Fri, 02 Oct 2009 11:26:36 -0700

author
xdono
date
Fri, 02 Oct 2009 11:26:36 -0700
changeset 88
f4466e1b6080
parent 87
558985e26fe1
child 91
cc35f0e129d2
permissions
-rw-r--r--

Added tag jdk7-b73 for changeset 558985e26fe1

     1 <?xml version="1.0"?>
     2 <!--
     3  Copyright 2009 Sun Microsystems, Inc.  All Rights Reserved.
     4  DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     6  This code is free software; you can redistribute it and/or modify it
     7  under the terms of the GNU General Public License version 2 only, as
     8  published by the Free Software Foundation.  Sun designates this
     9  particular file as subject to the "Classpath" exception as provided
    10  by Sun in the LICENSE file that accompanied this code.
    12  This code is distributed in the hope that it will be useful, but WITHOUT
    13  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    14  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    15  version 2 for more details (a copy is included in the LICENSE file that
    16  accompanied this code).
    18  You should have received a copy of the GNU General Public License version
    19  2 along with this work; if not, write to the Free Software Foundation,
    20  Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    22  Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    23  CA 95054 USA or visit www.sun.com if you need additional information or
    24  have any questions.
    25 -->
    27 <project name="jaxws_defs" default="all" basedir=".">
    29     <!-- Specific build properties. -->
    30     <property file="jaxws.properties"/>
    32     <!-- Where generated xml files will stay. -->
    33     <property name="xml.gen.dir" value="${build.dir}/xml_generated"/>
    34     <property name="xml.template" value="build-drop-template.xml"/>
    36     <!--  ############### -->
    37     <!--  Begin Macrodefs -->
    39     <!-- Copies template file, replaces @DROP@ pattern, and imports it. -->
    40     <macrodef name="drop-import">
    41         <attribute name="name"/>
    42         <sequential>
    43             <property name="xml.gen.@{name}" value="${xml.gen.dir}/build-drop-@{name}.xml"/>
    44             <mkdir dir="${xml.gen.dir}"/>
    45             <copy file="${xml.template}" tofile="${xml.gen.@{name}}"/>
    46             <replace file="${xml.gen.@{name}}" token="@DROP@" value="@{name}"/>
    47             <import file="${xml.gen.@{name}}"/>
    48         </sequential>
    49     </macrodef>
    51     <!--  End of Macrodefs -->
    52     <!--  ############### -->
    54     <!-- Create xml file and import it for these drops. -->
    55     <drop-import name="jaxws_src"/>
    56     <drop-import name="jaf_src"/>
    57     <!-- <drop-import name="jaxws_tests"/> -->
    59     <!-- Special build area preparation. -->
    60     <target name="-drop-build-prep" depends="init, -init-src-dirs">
    61         <mkdir dir="${build.classes.dir}"/>
    62         <copy todir="${build.classes.dir}">
    63             <fileset dir="${primary.src.dir}"
    64                      includes="**/*.xsd, **/*.default, **/*.properties"
    65                      excludes="**/*.java, **/*.package.html"/>
    66         </copy>
    67         <replaceregexp match="#(.*)$" replace="#" flags="gm">
    68             <fileset dir="${build.classes.dir}" includes="**/*.properties"/>
    69         </replaceregexp>
    71         <mkdir dir="${build.classes.dir}/META-INF/services"/>
    72         <copy todir="${build.classes.dir}/META-INF/services"
    73               file="${primary.src.dir}/com/sun/tools/etc/META-INF/services/com.sun.mirror.apt.AnnotationProcessorFactory"/>
    74         <copy todir="${build.classes.dir}/META-INF/services"
    75               file="${primary.src.dir}/com/sun/tools/etc/META-INF/services/com.sun.tools.internal.xjc.Plugin"/>
    76         <mkdir dir="${build.classes.dir}/com/sun/tools/internal/xjc/runtime"/>
    77         <copy todir="${build.classes.dir}/com/sun/tools/internal/xjc/runtime">
    78             <fileset dir="${primary.src.dir}/com/sun/tools/internal/xjc/runtime"
    79                      includes="**/*.java"
    80                      excludes="**/*.package.html"/>
    81         </copy>
    82     </target>
    84     <!-- Try to get drop sources, set property use.orig.src.dir if no drops. -->
    85     <target name="-set-props"
    86 	    depends="init,
    87                      jaxws_src-update,
    88                      jaf_src-update">
    89         <condition property="use.orig.src.dir">
    90             <and>
    91                 <available file="${orig.src.dir}" type="dir"/>
    92                 <not>
    93                     <and>
    94                         <available file="${jaxws_src.src.dir}" type="dir"/>
    95                         <available file="${jaf_src.src.dir}"   type="dir"/>
    96                     </and>
    97                 </not>
    98             </and>
    99         </condition>
   100     </target>
   102     <!-- Set up source to use orig.src.dir, if use.orig.src.dir defined. -->
   103     <target name="-use-orig" depends="-set-props" if="use.orig.src.dir">
   104         <property name="primary.src.dir" value="${orig.src.dir}"/>
   105         <path id="src.dir.id">
   106             <pathelement path="${primary.src.dir}"/>
   107         </path>
   108     </target>
   110     <!-- Set up source to use drop.dir, if use.orig.src.dir not defined. -->
   111     <target name="-use-drop" depends="-set-props" unless="use.orig.src.dir">
   112         <property name="primary.src.dir" value="${jaxws_src.src.dir}"/>
   113         <path id="src.dir.id">
   114             <pathelement path="${primary.src.dir}"/>
   115             <pathelement path="${jaf_src.src.dir}"/>
   116         </path>
   117     </target>
   119     <!-- Source directory selection. -->
   120     <target name="-init-src-dirs"
   121 	    depends="init, -use-orig, -use-drop">
   122         <echo message="Using primary.src.dir=${primary.src.dir}"/>
   123         <pathconvert property="src.list.id" refid="src.dir.id"/>
   124         <echo message="Using src.dir.id=${src.list.id}"/>
   125     </target>
   127     <!-- Create orig src.zip. -->
   128     <target name="-orig-src-zip" depends="init, -set-props" if="use.orig.src.dir">
   129         <zip file="${dist.src.zip}" basedir="${primary.src.dir}"/>
   130     </target>
   132     <!-- Create drop src.zip. -->
   133     <target name="-drop-src-zip" depends="init, -set-props" unless="use.orig.src.dir">
   134         <zip file="${dist.src.zip}" basedir="${primary.src.dir}"/>
   135         <zip file="${dist.src.zip}" basedir="${jaf_src.src.dir}" update="true"/>
   136     </target>
   138     <!-- Create src.zip. -->
   139     <target name="-dist-src-zip" depends="init, -orig-src-zip, -drop-src-zip">
   140     </target>
   142 </project>

mercurial