Changeset 278 for trunk/openjdk/jaxws
- Timestamp:
- Mar 26, 2011, 8:39:20 PM (14 years ago)
- Location:
- trunk/openjdk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk
- Property svn:ignore
-
old new 1 1 build 2 build-product-release
-
-
Property svn:mergeinfo
set to
/branches/vendor/oracle/openjdk6/b22 merged eligible /branches/vendor/oracle/openjdk6/current merged eligible
- Property svn:ignore
-
trunk/openjdk/jaxws/LICENSE
r2 r278 326 326 "CLASSPATH" EXCEPTION TO THE GPL 327 327 328 Certain source files distributed by Sun Microsystems, Inc. are subject to329 the following clarification and special exception to the GPL, but only where 330 Sun has expressly included in the particular source file's header the words 331 "Sun designates this particular file as subject to the "Classpath" exception 332 as provided by Sunin the LICENSE file that accompanied this code."328 Certain source files distributed by Oracle America and/or its affiliates are 329 subject to the following clarification and special exception to the GPL, but 330 only where Oracle has expressly included in the particular source file's header 331 the words "Oracle designates this particular file as subject to the "Classpath" 332 exception as provided by Oracle in the LICENSE file that accompanied this code." 333 333 334 334 Linking this library statically or dynamically with other modules is making -
trunk/openjdk/jaxws/build-defs.xml
r2 r278 1 1 <?xml version="1.0"?> 2 2 <!-- 3 Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.3 Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. 4 4 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 5 6 6 This code is free software; you can redistribute it and/or modify it 7 7 under the terms of the GNU General Public License version 2 only, as 8 published by the Free Software Foundation. Sundesignates this8 published by the Free Software Foundation. Oracle designates this 9 9 particular file as subject to the "Classpath" exception as provided 10 by Sunin the LICENSE file that accompanied this code.10 by Oracle in the LICENSE file that accompanied this code. 11 11 12 12 This code is distributed in the hope that it will be useful, but WITHOUT … … 20 20 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 21 21 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 or24 have anyquestions.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. 25 25 --> 26 26 … … 56 56 <drop-import name="jaf_src"/> 57 57 <!-- <drop-import name="jaxws_tests"/> --> 58 59 <!-- Fail and print helpful messages if source does not exist. --> 60 <target name="-src-help"> 61 <fail message="${failed.url.src.message}"> 62 <condition> 63 <and> 64 <not> 65 <and> 66 <available file="${jaxws_src.src.dir}" type="dir"/> 67 <available file="${jaf_src.src.dir}" type="dir"/> 68 </and> 69 </not> 70 <istrue value="${allow.downloads}"/> 71 </and> 72 </condition> 73 </fail> 74 <fail message="${failed.nourl.src.message}"> 75 <condition> 76 <not> 77 <and> 78 <available file="${jaxws_src.src.dir}" type="dir"/> 79 <available file="${jaf_src.src.dir}" type="dir"/> 80 </and> 81 </not> 82 </condition> 83 </fail> 84 </target> 58 85 59 <!-- Special build area preparation. -->60 <target name="-drop-build- prep" depends="init, -init-src-dirs">86 <!-- Special build area setup. --> 87 <target name="-drop-build-setup" depends="init, -init-src-dirs"> 61 88 <mkdir dir="${build.classes.dir}"/> 62 89 <copy todir="${build.classes.dir}"> … … 100 127 <!-- Source directory selection. --> 101 128 <target name="-init-src-dirs" 102 depends="init, -use-drop ">129 depends="init, -use-drop,-src-help"> 103 130 <echo message="Using primary.src.dir=${primary.src.dir}"/> 104 131 <pathconvert property="src.list.id" refid="src.dir.id"/> -
trunk/openjdk/jaxws/build-drop-template.xml
r2 r278 1 1 <?xml version="1.0"?> 2 2 <!-- 3 Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.3 Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. 4 4 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 5 6 6 This code is free software; you can redistribute it and/or modify it 7 7 under the terms of the GNU General Public License version 2 only, as 8 published by the Free Software Foundation. Sundesignates this8 published by the Free Software Foundation. Oracle designates this 9 9 particular file as subject to the "Classpath" exception as provided 10 by Sunin the LICENSE file that accompanied this code.10 by Oracle in the LICENSE file that accompanied this code. 11 11 12 12 This code is distributed in the hope that it will be useful, but WITHOUT … … 20 20 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 21 21 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 or24 have anyquestions.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. 25 25 --> 26 26 … … 76 76 <condition property="@DROP@.url.should.be.used"> 77 77 <and> 78 <istrue value="${allow.downloads}"/> 78 79 <not> 79 80 <isset property="@DROP@.master.bundle.copy.exists"/> -
trunk/openjdk/jaxws/build.properties
r2 r278 1 1 # 2 # Copyright 2007-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 … … 105 105 ${line.separator} 106 106 107 # Failure messages when source cannot be found on the file system 108 failed.nourl.src.message=\ 109 ERROR: Cannot find source for project ${ant.project.name}.\ 110 ${line.separator}${line.separator}\ 111 HINT: Try setting drops.dir to indicate where the bundles can be found, \ 112 or try setting the ant property allow.downloads=true to download the bundle from the URL.\ 113 ${line.separator}\ 114 e.g. ant -Dallow.downloads=true -OR- ant -Ddrops.dir=some_directory \ 115 ${line.separator} 116 117 # Failure message when source cannot be downloaded 118 failed.url.src.message=\ 119 ERROR: Cannot find source for project ${ant.project.name}.\ 120 ${line.separator}${line.separator}\ 121 HINT: Try setting drops.dir to indicate where the bundles can be found, \ 122 or try checking the URL with your browser.\ 123 ${line.separator}\ 124 e.g. ant -Ddrops.dir=some_directory \ 125 ${line.separator} 126 107 127 #------------------------------------------------------------ -
trunk/openjdk/jaxws/build.xml
r2 r278 1 1 <?xml version="1.0"?> 2 2 <!-- 3 Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.3 Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. 4 4 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 5 6 6 This code is free software; you can redistribute it and/or modify it 7 7 under the terms of the GNU General Public License version 2 only, as 8 published by the Free Software Foundation. Sundesignates this8 published by the Free Software Foundation. Oracle designates this 9 9 particular file as subject to the "Classpath" exception as provided 10 by Sunin the LICENSE file that accompanied this code.10 by Oracle in the LICENSE file that accompanied this code. 11 11 12 12 This code is distributed in the hope that it will be useful, but WITHOUT … … 20 20 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 21 21 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 or24 have anyquestions.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. 25 25 --> 26 26 … … 37 37 javac.target - classfile version target 38 38 javac.source - source version 39 drops.dir - directory that holds source drop bundles 40 allow.download - permit downloads from public url (default is false) 41 (used if bundles not found in drops.dir) 42 43 Run 'make help' for help using the Makefile. 39 44 </description> 40 45 … … 107 112 </target> 108 113 109 <target name="-build- prep"110 depends="init, -init-src-dirs, -drop-build- prep">114 <target name="-build-setup" 115 depends="init, -init-src-dirs, -drop-build-setup"> 111 116 </target> 112 117 113 118 <!-- Build (compilation) of sources to class files. --> 114 119 <target name="build" 115 depends="init, -init-src-dirs, -build-prep"> 120 depends="compile, -build-setup"> 121 </target> 122 <target name="compile" 123 depends="init, -init-src-dirs"> 124 <mkdir dir="${build.classes.dir}"/> 116 125 <javac 117 126 includeAntRuntime="false" -
trunk/openjdk/jaxws/jaxws.properties
r259 r278 1 1 # 2 # Copyright 2007-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 26 26 drops.master.copy.base=${drops.dir} 27 drops.master.url.base=http://kenai.com/downloads/jdk6-drops28 27 29 jaxws_src.bundle.name=jdk6-jaxws- 2009_10_27.zip30 jaxws_src.bundle.md5.checksum= 3ea5728706169498b722b898a1008acf28 jaxws_src.bundle.name=jdk6-jaxws-b20.zip 29 jaxws_src.bundle.md5.checksum=91adfd41e6f001add4f92ae31216b1e3 31 30 jaxws_src.master.bundle.dir=${drops.master.copy.base} 32 jaxws_src.master.bundle.url.base= ${drops.master.url.base}31 jaxws_src.master.bundle.url.base=https://java.net/downloads/jax-ws/OpenJDK6 33 32 34 jaf_src.bundle.name=jdk6-jaf- 2009_10_27.zip35 jaf_src.bundle.md5.checksum= 7a50bb540a27cdd0001885630088b75833 jaf_src.bundle.name=jdk6-jaf-b20.zip 34 jaf_src.bundle.md5.checksum=bc95c133620bd68c161cac9891592901 36 35 jaf_src.master.bundle.dir=${drops.master.copy.base} 37 jaf_src.master.bundle.url.base= ${drops.master.url.base}36 jaf_src.master.bundle.url.base=https://java.net/downloads/jax-ws/OpenJDK6 38 37 39 jaxws_tests.bundle.name=jdk6-jaxws-tests-2009_10_27.zip40 jaxws_tests.master.bundle.dir=${drops.master.copy.base}41 jaxws_tests.master.bundle.url.base=${drops.master.url.base} 38 #jaxws_tests.bundle.name=jdk6-jaxws-tests-2009_10_27.zip 39 #jaxws_tests.master.bundle.dir=${drops.master.copy.base} 40 #jaxws_tests.master.bundle.url.base=https://java.net/downloads/jax-ws/OpenJDK6 42 41 -
trunk/openjdk/jaxws/make/Makefile
r72 r278 1 1 # 2 # Copyright 2007-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 … … 64 64 ANT_OPTIONS += -Djavac.source=$(JAVAC_SOURCE_ARG) 65 65 endif 66 endif 67 68 # If downloads are allowed 69 ifeq ($(ALLOW_DOWNLOADS),true) 70 ANT_OPTIONS += -Dallow.downloads=true 66 71 endif 67 72 … … 171 176 @echo " " 172 177 @echo " Environment or command line variables (all optional):" 178 $(call helpenvline, ALT_DROPS_DIR,\ 179 "Directory that contains the drop source bundles i.e. drops.dir") 173 180 $(call helpenvline, ALT_BOOTDIR,\ 174 181 "JAVA_HOME to use when running ant") -
trunk/openjdk/jaxws/make/jprt.properties
r2 r278 1 1 # 2 # Copyright 2006-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 … … 41 41 jprt.build.flavors=product,fastdebug 42 42 43 # Explicitly designate what the 32bit match is for the 64bit build44 jprt.solaris_sparcv9.build.platform.match32=solaris_sparc_5.1045 jprt.solaris_sparcv9_5.10.build.platform.match32=solaris_sparc_5.1046 jprt.solaris_x64.build.platform.match32=solaris_i586_5.1047 jprt.solaris_x64_5.10.build.platform.match32=solaris_i586_5.1048 49 43 # Standard list of jprt test targets for this workspace 50 44 jprt.test.targets=
Note:
See TracChangeset
for help on using the changeset viewer.