[bvalid-codewatch] SF.net SVN: bvalid: [20] trunk
Status: Beta
Brought to you by:
cwilper
|
From: <cw...@us...> - 2006-05-01 10:18:04
|
Revision: 20 Author: cwilper Date: 2006-05-01 03:17:53 -0700 (Mon, 01 May 2006) ViewCVS: http://svn.sourceforge.net/bvalid/?rev=20&view=rev Log Message: ----------- changed version to 0.8, added license, and added release target Modified Paths: -------------- trunk/build.xml trunk/src/java/net/sf/bvalid/BValid.properties Added Paths: ----------- trunk/LICENSE.txt trunk/README.txt Added: trunk/LICENSE.txt =================================================================== --- trunk/LICENSE.txt (rev 0) +++ trunk/LICENSE.txt 2006-05-01 10:17:53 UTC (rev 20) @@ -0,0 +1,51 @@ +The Educational Community License + +This Educational Community License (the "License") applies to any +original work of authorship (the "Original Work") whose owner (the +"Licensor") has placed the following notice immediately following the +copyright notice for the Original Work: + +Copyright (c) <year> <copyright holders> + +Licensed under the Educational Community License version 1.0 + +This Original Work, including software, source code, documents, or +other related items, is being provided by the copyright holder(s) +subject to the terms of the Educational Community License. By +obtaining, using and/or copying this Original Work, you agree that you +have read, understand, and will comply with the following terms and +conditions of the Educational Community License: + +Permission to use, copy, modify, merge, publish, distribute, and +sublicense this Original Work and its documentation, with or without +modification, for any purpose, and without fee or royalty to the +copyright holder(s) is hereby granted, provided that you include the +following on ALL copies of the Original Work or portions thereof, +including modifications or derivatives, that you make: + +- The full text of the Educational Community License in a location +viewable to users of the redistributed or derivative work. + +- Any pre-existing intellectual property disclaimers, notices, or terms +and conditions. + +- Notice of any changes or modifications to the Original Work, +including the date the changes were made. + +- Any modifications of the Original Work must be distributed in such a +manner as to avoid any confusion with the Original Work of the +copyright holders. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +The name and trademarks of copyright holder(s) may NOT be used in +advertising or publicity pertaining to the Original or Derivative Works +without specific, written prior permission. Title to copyright in the +Original Work and any associated documentation will at all times remain +with the copyright holders. Added: trunk/README.txt =================================================================== --- trunk/README.txt (rev 0) +++ trunk/README.txt 2006-05-01 10:17:53 UTC (rev 20) @@ -0,0 +1,11 @@ +This is a source distribution of BValid, a Java library for XML validation. + +To build, make sure ant is in your path and type: + +ant dist + +Then, to run the command-line validation utility, cd to dist and type: + +bvalid --help + +For more information, see http://bvalid.sf.net/ Modified: trunk/build.xml =================================================================== --- trunk/build.xml 2006-05-01 09:09:54 UTC (rev 19) +++ trunk/build.xml 2006-05-01 10:17:53 UTC (rev 20) @@ -3,6 +3,9 @@ <loadproperties srcFile="build.properties"/> + <!-- defines bvalid.version --> + <loadproperties srcFile="src/java/net/sf/bvalid/BValid.properties"/> + <path id="base.path"> <pathelement location="${lib.xml-apis}"/> <pathelement location="${lib.xerces}"/> @@ -62,6 +65,34 @@ <jar jarfile="dist/bvalid.jar" basedir="build/classes"/> </target> + <target name="srcrelease" depends="clean"> + <copy todir="dist/release/bvalid-${bvalid.version}-src"> + <fileset dir="."> + <exclude name="dist/**"/> + </fileset> + </copy> + <zip zipfile="dist/release/bvalid-${bvalid.version}-src.zip" basedir="dist/release" includes="bvalid-${bvalid.version}-src/**"/> + <delete dir="dist/release/bvalid-${bvalid.version}-src"/> + </target> + + <target name="binrelease" depends="dist"> + <copy todir="dist/release/bvalid-${bvalid.version}"> + <fileset dir="dist"> + <exclude name="release/**"/> + </fileset> + </copy> + <zip zipfile="dist/release/bvalid-${bvalid.version}.zip" basedir="dist/release" includes="bvalid-${bvalid.version}/**"/> + <delete dir="dist/release/bvalid-${bvalid.version}"/> + </target> + + <target name="release" depends="srcrelease,binrelease" description="Build the source and binary distributions in dist/release"> + <checksum fileext=".md5"> + <fileset dir="dist/release"> + <include name="*.zip"/> + </fileset> + </checksum> + </target> + <target name="doc" depends="prep" description="Build the documentation in dist/doc"> Modified: trunk/src/java/net/sf/bvalid/BValid.properties =================================================================== --- trunk/src/java/net/sf/bvalid/BValid.properties 2006-05-01 09:09:54 UTC (rev 19) +++ trunk/src/java/net/sf/bvalid/BValid.properties 2006-05-01 10:17:53 UTC (rev 20) @@ -1,2 +1,2 @@ -bvalid.version = 1.0 +bvalid.version = 0.8 bvalid.buildDate = @buildDate@ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |