1
0

Changed build script so that the javadocs contain the license boilerplate and also that the NOTICE file is copied to the dist directory (as well as the LICENSE file).

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@139018 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Burrell Donkin
2004-03-02 21:02:51 +00:00
parent b78be57e16
commit c350b20082

View File

@@ -21,7 +21,7 @@
<!-- <!--
"Logging" component of the Jakarta Commons Subproject "Logging" component of the Jakarta Commons Subproject
$Id: build.xml,v 1.41 2004/02/28 22:10:53 craigmcc Exp $ $Id: build.xml,v 1.42 2004/03/02 21:02:51 rdonkin Exp $
--> -->
@@ -391,7 +391,19 @@
version="true" version="true"
doctitle="&lt;h1&gt;${component.title} (Version ${component.version})&lt;/h1&gt;" doctitle="&lt;h1&gt;${component.title} (Version ${component.version})&lt;/h1&gt;"
windowtitle="${component.title} (Version ${component.version})" windowtitle="${component.title} (Version ${component.version})"
bottom="Copyright (c) 2002-2003 - Apache Software Foundation"> bottom='Copyright 2002-2004 The Apache Software Foundation.&lt;!--
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.--&gt;'>
<classpath refid="test.classpath"/> <classpath refid="test.classpath"/>
</javadoc> </javadoc>
</target> </target>
@@ -402,6 +414,8 @@
<mkdir dir="${dist.home}"/> <mkdir dir="${dist.home}"/>
<copy file="LICENSE.txt" <copy file="LICENSE.txt"
todir="${dist.home}"/> todir="${dist.home}"/>
<copy file="NOTICE.txt"
todir="${dist.home}"/>
<copy file="RELEASE-NOTES.txt" <copy file="RELEASE-NOTES.txt"
todir="${dist.home}"/> todir="${dist.home}"/>
<copy file="usersguide.html" <copy file="usersguide.html"