DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17789>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17789 build.properties not present in xmlrpc-1.2-b1-src [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Target Milestone|--- |1.2 ------- Additional Comments From [EMAIL PROTECTED] 2003-03-27 02:58 ------- Ryan, you're right -- use of default.properties is more appropriate. Since this was labelled as beta release, switching to default.properties sounds appropriate. I've copied the build.properties,v file in the repository to default.properties,v, cvs rm'd the old build.properties, and applied the following patch: Index: build.xml =================================================================== RCS file: /home/cvs/xml-rpc/build.xml,v retrieving revision 1.20.2.2 diff -u -r1.20.2.2 build.xml --- build.xml 15 Feb 2003 20:47:17 -0000 1.20.2.2 +++ build.xml 27 Mar 2003 02:54:26 -0000 @@ -5,11 +5,14 @@ <!-- Properties which are not allowed to be overridden --> <property name="version" value="1.2-b1"/> + <!-- Allow any locally-specified values to override the defaults --> + <property file="build.properties" /> + <!-- Allow any user specific values to override the defaults --> <property file="${user.home}/build.properties" /> <!-- Set default values for the build --> - <property file="build.properties" /> + <property file="default.properties" /> <!-- Construct compile classpath --> <path id="classpath"> Index: default.properties =================================================================== RCS file: /home/cvs/xml-rpc/default.properties,v retrieving revision 1.9 diff -u -r1.9 default.properties --- default.properties 15 Aug 2002 16:30:04 -0000 1.9 +++ default.properties 27 Mar 2003 02:54:26 -0000 @@ -1,9 +1,9 @@ # ------------------------------------------------------------------- -# B U I L D P R O P E R T I E S +# D E F A U L T P R O P E R T I E S # ------------------------------------------------------------------- -# These properties are used by the XML-RPC build, you may override -# any of these default values by placing property values in -# your ${user.home}/build.properties file. +# These properties are used by the XML-RPC build. You may override +# any of these default values by placing property values in your +# local build.properties and ${user.home}/build.properties files. # ------------------------------------------------------------------- name = XML-RPC If someone makes a new known-good tarball and points me to it (or attaches it here), I'll push it live.