author | michaelm |
Thu, 15 Sep 2011 13:50:30 +0100 | |
changeset 10594 | d6723ee39ebf |
parent 9063 | 937a014028a6 |
child 11377 | 90950a02c070 |
permissions | -rw-r--r-- |
3885 | 1 |
<?xml version="1.0"?> |
2 |
<!-- |
|
9063
937a014028a6
7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents:
5836
diff
changeset
|
3 |
Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. |
3885 | 4 |
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
5 |
||
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 |
|
5516 | 8 |
published by the Free Software Foundation. Oracle designates this |
3885 | 9 |
particular file as subject to the "Classpath" exception as provided |
5516 | 10 |
by Oracle in the LICENSE file that accompanied this code. |
3885 | 11 |
|
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). |
|
17 |
||
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. |
|
21 |
||
5516 | 22 |
Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
23 |
or visit www.oracle.com if you need additional information or have any |
|
24 |
questions. |
|
3885 | 25 |
--> |
26 |
||
27 |
<project name="jaxws_defs" default="all" basedir="."> |
|
28 |
||
29 |
<!-- Specific build properties. --> |
|
30 |
<property file="jaxws.properties"/> |
|
31 |
||
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"/> |
|
35 |
||
36 |
<!-- ############### --> |
|
37 |
<!-- Begin Macrodefs --> |
|
38 |
||
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> |
|
50 |
||
51 |
<!-- End of Macrodefs --> |
|
52 |
<!-- ############### --> |
|
53 |
||
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"/> --> |
|
5836
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
58 |
|
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
59 |
<!-- Fail and print helpful messages if source does not exist. --> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
60 |
<target name="-src-help"> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
61 |
<fail message="${failed.url.src.message}"> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
62 |
<condition> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
63 |
<and> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
64 |
<not> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
65 |
<and> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
66 |
<available file="${jaxws_src.src.dir}" type="dir"/> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
67 |
<available file="${jaf_src.src.dir}" type="dir"/> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
68 |
</and> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
69 |
</not> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
70 |
<istrue value="${allow.downloads}"/> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
71 |
</and> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
72 |
</condition> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
73 |
</fail> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
74 |
<fail message="${failed.nourl.src.message}"> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
75 |
<condition> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
76 |
<not> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
77 |
<and> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
78 |
<available file="${jaxws_src.src.dir}" type="dir"/> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
79 |
<available file="${jaf_src.src.dir}" type="dir"/> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
80 |
</and> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
81 |
</not> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
82 |
</condition> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
83 |
</fail> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
84 |
</target> |
3885 | 85 |
|
5836
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
86 |
<!-- Special build area setup. --> |
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
87 |
<target name="-drop-build-setup" depends="init, -init-src-dirs"> |
3885 | 88 |
<mkdir dir="${build.classes.dir}"/> |
89 |
<copy todir="${build.classes.dir}"> |
|
90 |
<fileset dir="${primary.src.dir}" |
|
3887
2d600411d2b7
6886359: Missing jaxws property files and missing changes in jaxp/jaxws drop bundles
ohair
parents:
3885
diff
changeset
|
91 |
includes="**/*.xsd, **/*.default, **/*.properties" |
2d600411d2b7
6886359: Missing jaxws property files and missing changes in jaxp/jaxws drop bundles
ohair
parents:
3885
diff
changeset
|
92 |
excludes="**/*.java, **/*.package.html"/> |
3885 | 93 |
</copy> |
3887
2d600411d2b7
6886359: Missing jaxws property files and missing changes in jaxp/jaxws drop bundles
ohair
parents:
3885
diff
changeset
|
94 |
<replaceregexp match="#(.*)$" replace="#" flags="gm"> |
2d600411d2b7
6886359: Missing jaxws property files and missing changes in jaxp/jaxws drop bundles
ohair
parents:
3885
diff
changeset
|
95 |
<fileset dir="${build.classes.dir}" includes="**/*.properties"/> |
2d600411d2b7
6886359: Missing jaxws property files and missing changes in jaxp/jaxws drop bundles
ohair
parents:
3885
diff
changeset
|
96 |
</replaceregexp> |
2d600411d2b7
6886359: Missing jaxws property files and missing changes in jaxp/jaxws drop bundles
ohair
parents:
3885
diff
changeset
|
97 |
|
3885 | 98 |
<mkdir dir="${build.classes.dir}/META-INF/services"/> |
99 |
<copy todir="${build.classes.dir}/META-INF/services" |
|
100 |
file="${primary.src.dir}/com/sun/tools/etc/META-INF/services/com.sun.mirror.apt.AnnotationProcessorFactory"/> |
|
101 |
<copy todir="${build.classes.dir}/META-INF/services" |
|
102 |
file="${primary.src.dir}/com/sun/tools/etc/META-INF/services/com.sun.tools.internal.xjc.Plugin"/> |
|
103 |
<mkdir dir="${build.classes.dir}/com/sun/tools/internal/xjc/runtime"/> |
|
104 |
<copy todir="${build.classes.dir}/com/sun/tools/internal/xjc/runtime"> |
|
105 |
<fileset dir="${primary.src.dir}/com/sun/tools/internal/xjc/runtime" |
|
106 |
includes="**/*.java" |
|
107 |
excludes="**/*.package.html"/> |
|
108 |
</copy> |
|
109 |
</target> |
|
110 |
||
4137
a06d987928b2
6894441: Add checksum checks, remove use of original sources in jax repositories, fix bundle logic
ohair
parents:
3887
diff
changeset
|
111 |
<!-- Try to get drop sources. --> |
3885 | 112 |
<target name="-set-props" |
113 |
depends="init, |
|
114 |
jaxws_src-update, |
|
115 |
jaf_src-update"> |
|
116 |
</target> |
|
117 |
||
4137
a06d987928b2
6894441: Add checksum checks, remove use of original sources in jax repositories, fix bundle logic
ohair
parents:
3887
diff
changeset
|
118 |
<!-- Set up source to use drop.dir. --> |
a06d987928b2
6894441: Add checksum checks, remove use of original sources in jax repositories, fix bundle logic
ohair
parents:
3887
diff
changeset
|
119 |
<target name="-use-drop" depends="-set-props"> |
3885 | 120 |
<property name="primary.src.dir" value="${jaxws_src.src.dir}"/> |
121 |
<path id="src.dir.id"> |
|
122 |
<pathelement path="${primary.src.dir}"/> |
|
123 |
<pathelement path="${jaf_src.src.dir}"/> |
|
124 |
</path> |
|
125 |
</target> |
|
126 |
||
127 |
<!-- Source directory selection. --> |
|
128 |
<target name="-init-src-dirs" |
|
5836
0ca88d5cdd40
6955292: Workaround ant 1.7.1 package-info.java issue in ant scripts
ohair
parents:
5516
diff
changeset
|
129 |
depends="init, -use-drop,-src-help"> |
3885 | 130 |
<echo message="Using primary.src.dir=${primary.src.dir}"/> |
131 |
<pathconvert property="src.list.id" refid="src.dir.id"/> |
|
132 |
<echo message="Using src.dir.id=${src.list.id}"/> |
|
133 |
</target> |
|
134 |
||
135 |
<!-- Create drop src.zip. --> |
|
4137
a06d987928b2
6894441: Add checksum checks, remove use of original sources in jax repositories, fix bundle logic
ohair
parents:
3887
diff
changeset
|
136 |
<target name="-drop-src-zip" depends="init, -set-props"> |
3885 | 137 |
<zip file="${dist.src.zip}" basedir="${primary.src.dir}"/> |
138 |
<zip file="${dist.src.zip}" basedir="${jaf_src.src.dir}" update="true"/> |
|
139 |
</target> |
|
140 |
||
141 |
<!-- Create src.zip. --> |
|
4137
a06d987928b2
6894441: Add checksum checks, remove use of original sources in jax repositories, fix bundle logic
ohair
parents:
3887
diff
changeset
|
142 |
<target name="-dist-src-zip" depends="init, -drop-src-zip"> |
3885 | 143 |
</target> |
144 |
||
145 |
</project> |