Author: crossley
Date: Tue May 16 00:20:06 2006
New Revision: 406862
URL: http://svn.apache.org/viewcvs?rev=406862&view=rev
Log:
Updated to Apache-Ant-1.6.5 release, jsch-0.1.28, apache-jakarta-commons-net-1.4.1
Added:
forrest/trunk/tools/ant/lib/ant-apache-oro.jar (with props)
forrest/trunk/tools/ant/lib/apache-jakarta-commons-net-1.4.1.jar (with props)
forrest/trunk/tools/ant/lib/apache-jakarta-commons-net-1.4.1.jar.license.txt
- copied unchanged from r405932, forrest/trunk/tools/ant/lib/commons-net-1.3.0.jar.license.txt
forrest/trunk/tools/ant/lib/jsch-0.1.28.jar (with props)
forrest/trunk/tools/ant/lib/jsch-0.1.28.jar.license.txt (with props)
Removed:
forrest/trunk/tools/ant/lib/ant-commons-net.jar.license.txt
forrest/trunk/tools/ant/lib/commons-net-1.3.0.jar
forrest/trunk/tools/ant/lib/commons-net-1.3.0.jar.license.txt
forrest/trunk/tools/ant/lib/jsch-0.1.14.jar
forrest/trunk/tools/ant/lib/jsch-0.1.14.jar.license.txt
Modified:
forrest/trunk/site-author/status.xml
forrest/trunk/tools/ant/bin/ant
forrest/trunk/tools/ant/bin/ant.bat
forrest/trunk/tools/ant/bin/ant.cmd
forrest/trunk/tools/ant/bin/antRun
forrest/trunk/tools/ant/bin/antRun.bat
forrest/trunk/tools/ant/bin/antRun.pl
forrest/trunk/tools/ant/bin/antenv.cmd
forrest/trunk/tools/ant/bin/complete-ant-cmd.pl
forrest/trunk/tools/ant/bin/envset.cmd
forrest/trunk/tools/ant/bin/lcp.bat
forrest/trunk/tools/ant/bin/runant.pl
forrest/trunk/tools/ant/bin/runant.py
forrest/trunk/tools/ant/bin/runrc.cmd
forrest/trunk/tools/ant/lib/ant-apache-resolver.jar
forrest/trunk/tools/ant/lib/ant-commons-net.jar
forrest/trunk/tools/ant/lib/ant-jsch.jar
forrest/trunk/tools/ant/lib/ant-launcher.jar
forrest/trunk/tools/ant/lib/ant-nodeps.jar
forrest/trunk/tools/ant/lib/ant-trax.jar
forrest/trunk/tools/ant/lib/ant.jar
Modified: forrest/trunk/site-author/status.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/site-author/status.xml?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
--- forrest/trunk/site-author/status.xml (original)
+++ forrest/trunk/site-author/status.xml Tue May 16 00:20:06 2006
@@ -130,6 +130,9 @@
<link href="site:v0.80//upgrading_08">upgrading to v0.8</link>
</action>
+ <action context="code" type="update" dev="DC">
+ Updated to Apache-Ant-1.6.5 release, jsch-0.1.28, apache-jakarta-commons-net-1.4.1
+ </action>
<action context="code" type="update" dev="AG">
Updated xerces to 2.8.0, xml-apis to 1.3.03, log4j to 1.2.13 and ehcache to 1.2.
</action>
Modified: forrest/trunk/tools/ant/bin/ant
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/bin/ant?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
--- forrest/trunk/tools/ant/bin/ant (original)
+++ forrest/trunk/tools/ant/bin/ant Tue May 16 00:20:06 2006
@@ -1,7 +1,6 @@
#! /bin/sh
-# Copyright 2001-2004 The Apache Software Foundation or its licensors,
-# as applicable.
+# Copyright 2001-2005 The Apache Software Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -88,15 +87,6 @@
esac
if [ -z "$ANT_HOME" -o ! -d "$ANT_HOME" ] ; then
- # try to find ANT
- if [ -d /opt/ant ] ; then
- ANT_HOME=/opt/ant
- fi
-
- if [ -d "${HOME}/opt/ant" ] ; then
- ANT_HOME="${HOME}/opt/ant"
- fi
-
## resolve links - $0 may be a link to ant's home
PRG="$0"
progname=`basename "$0"`
@@ -193,7 +183,7 @@
LOCALCLASSPATH="$LOCALCLASSPATH:$CLASSPATH"
fi
- # remove class path from launcher -lib option
+ # remove class path from launcher -cp option
CLASSPATH=""
fi
else
@@ -224,6 +214,10 @@
fi
# For Cygwin, switch paths to appropriate format before running java
+# For PATHs convert to unix format first, then to windows format to ensure
+# both formats are supported. Probably this will fail on directories with ;
+# in the name in the path. Let's assume that paths containing ; are more
+# rare than windows style paths on cygwin.
if $cygwin; then
if [ "$OS" = "Windows_NT" ] && cygpath -m .>/dev/null 2>/dev/null ; then
format=mixed
@@ -233,9 +227,11 @@
ANT_HOME=`cygpath --$format "$ANT_HOME"`
ANT_LIB=`cygpath --$format "$ANT_LIB"`
JAVA_HOME=`cygpath --$format "$JAVA_HOME"`
- LOCALCLASSPATH=`cygpath --path --$format "$LOCALCLASSPATH"`
+ LCP_TEMP=`cygpath --path --unix "$LOCALCLASSPATH"`
+ LOCALCLASSPATH=`cygpath --path --$format "$LCP_TEMP"`
if [ -n "$CLASSPATH" ] ; then
- CLASSPATH=`cygpath --path --$format "$CLASSPATH"`
+ CP_TEMP=`cygpath --path --unix "$CLASSPATH"`
+ CLASSPATH=`cygpath --path --$format "$CP_TEMP"`
fi
CYGHOME=`cygpath --$format "$HOME"`
fi
@@ -296,7 +292,7 @@
ant_sys_opts="-Djikes.class.path=\"$JIKESPATH\""
fi
fi
-ant_exec_command="exec \"$JAVACMD\" $ANT_OPTS -classpath \"$LOCALCLASSPATH\" -Dant.home=\"$ANT_HOME\"
-Dant.library.dir=\"$ANT_LIB\" $ant_sys_opts org.apache.tools.ant.launch.Launcher $ANT_ARGS
-lib \"$CLASSPATH\" $ant_exec_args"
+ant_exec_command="exec \"$JAVACMD\" $ANT_OPTS -classpath \"$LOCALCLASSPATH\" -Dant.home=\"$ANT_HOME\"
-Dant.library.dir=\"$ANT_LIB\" $ant_sys_opts org.apache.tools.ant.launch.Launcher $ANT_ARGS
-cp \"$CLASSPATH\" $ant_exec_args"
if $ant_exec_debug ; then
echo $ant_exec_command
fi
Modified: forrest/trunk/tools/ant/bin/ant.bat
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/bin/ant.bat?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
--- forrest/trunk/tools/ant/bin/ant.bat (original)
+++ forrest/trunk/tools/ant/bin/ant.bat Tue May 16 00:20:06 2006
@@ -1,7 +1,6 @@
@echo off
-REM Copyright 2001,2004 The Apache Software Foundation or its licensors,
-REM as applicable.
+REM Copyright 2001,2004-2005 The Apache Software Foundation
REM
REM Licensed under the Apache License, Version 2.0 (the "License");
REM you may not use this file except in compliance with the License.
@@ -18,6 +17,7 @@
if exist "%HOME%\antrc_pre.bat" call "%HOME%\antrc_pre.bat"
if "%OS%"=="Windows_NT" @setlocal
+if "%OS%"=="WINNT" @setlocal
rem %~dp0 is expanded pathname of the current script under NT
set DEFAULT_ANT_HOME=%~dp0..
@@ -25,6 +25,8 @@
if "%ANT_HOME%"=="" set ANT_HOME=%DEFAULT_ANT_HOME%
set DEFAULT_ANT_HOME=
+set _USE_CLASSPATH=yes
+
rem Slurp the command line arguments. This loop allows for an unlimited number
rem of arguments (up to the command line limit, anyway).
set ANT_CMD_LINE_ARGS=%1
@@ -32,9 +34,17 @@
shift
:setupArgs
if ""%1""=="""" goto doneStart
+if ""%1""==""-noclasspath"" goto clearclasspath
set ANT_CMD_LINE_ARGS=%ANT_CMD_LINE_ARGS% %1
shift
goto setupArgs
+
+rem here is there is a -noclasspath in the options
+:clearclasspath
+set _USE_CLASSPATH=no
+shift
+goto setupArgs
+
rem This label provides a place for the argument list loop to break out
rem and for NT handling to skip to.
@@ -79,21 +89,29 @@
if not "%JIKESPATH%"=="" goto runAntWithJikes
:runAnt
+if "%_USE_CLASSPATH%"=="no" goto runAntNoClasspath
if not "%CLASSPATH%"=="" goto runAntWithClasspath
"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%"
org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS%
goto end
+:runAntNoClasspath
+"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%"
org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS%
+goto end
+
:runAntWithClasspath
-"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%"
org.apache.tools.ant.launch.Launcher %ANT_ARGS% -lib "%CLASSPATH%" %ANT_CMD_LINE_ARGS%
+"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%"
org.apache.tools.ant.launch.Launcher %ANT_ARGS% -cp "%CLASSPATH%" %ANT_CMD_LINE_ARGS%
goto end
:runAntWithJikes
+if "%_USE_CLASSPATH%"=="no" goto runAntWithJikesNoClasspath
if not "%CLASSPATH%"=="" goto runAntWithJikesAndClasspath
+
+:runAntWithJikesNoClasspath
"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%"
"-Djikes.class.path=%JIKESPATH%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS%
goto end
:runAntWithJikesAndClasspath
-"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%"
"-Djikes.class.path=%JIKESPATH%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% -lib "%CLASSPATH%"
%ANT_CMD_LINE_ARGS%
+"%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%"
"-Djikes.class.path=%JIKESPATH%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% -cp "%CLASSPATH%"
%ANT_CMD_LINE_ARGS%
goto end
:end
@@ -101,6 +119,7 @@
set ANT_CMD_LINE_ARGS=
if "%OS%"=="Windows_NT" @endlocal
+if "%OS%"=="WINNT" @endlocal
:mainEnd
if exist "%HOME%\antrc_post.bat" call "%HOME%\antrc_post.bat"
Modified: forrest/trunk/tools/ant/bin/ant.cmd
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/bin/ant.cmd?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
--- forrest/trunk/tools/ant/bin/ant.cmd (original)
+++ forrest/trunk/tools/ant/bin/ant.cmd Tue May 16 00:20:06 2006
@@ -1,6 +1,5 @@
/*
- Copyright 2003-2004 The Apache Software Foundation or its licensors,
- as applicable.
+ Copyright 2003-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Modified: forrest/trunk/tools/ant/bin/antRun
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/bin/antRun?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
--- forrest/trunk/tools/ant/bin/antRun (original)
+++ forrest/trunk/tools/ant/bin/antRun Tue May 16 00:20:06 2006
@@ -1,8 +1,7 @@
#!/bin/sh
#
-# Copyright 2001-2002,2004 The Apache Software Foundation or its licensors,
-# as applicable.
+# Copyright 2001-2002,2004 The Apache Software Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Modified: forrest/trunk/tools/ant/bin/antRun.bat
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/bin/antRun.bat?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
--- forrest/trunk/tools/ant/bin/antRun.bat (original)
+++ forrest/trunk/tools/ant/bin/antRun.bat Tue May 16 00:20:06 2006
@@ -1,8 +1,7 @@
@echo off
REM
-REM Copyright 2001-2002,2004 The Apache Software Foundation or its licensors,
-REM as applicable.
+REM Copyright 2001-2002,2004-2005 The Apache Software Foundation
REM
REM Licensed under the Apache License, Version 2.0 (the "License");
REM you may not use this file except in compliance with the License.
@@ -19,6 +18,7 @@
REM
if "%OS%"=="Windows_NT" @setlocal
+if "%OS%"=="WINNT" @setlocal
if ""%1""=="""" goto runCommand
@@ -43,4 +43,5 @@
%ANT_RUN_CMD%
if "%OS%"=="Windows_NT" @endlocal
+if "%OS%"=="WINNT" @endlocal
Modified: forrest/trunk/tools/ant/bin/antRun.pl
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/bin/antRun.pl?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
--- forrest/trunk/tools/ant/bin/antRun.pl (original)
+++ forrest/trunk/tools/ant/bin/antRun.pl Tue May 16 00:20:06 2006
@@ -1,7 +1,6 @@
#!/usr/bin/perl
#
-# Copyright 2001,2003-2004 The Apache Software Foundation or its licensors,
-# as applicable.
+# Copyright 2001,2003-2004 The Apache Software Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Modified: forrest/trunk/tools/ant/bin/antenv.cmd
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/bin/antenv.cmd?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
--- forrest/trunk/tools/ant/bin/antenv.cmd (original)
+++ forrest/trunk/tools/ant/bin/antenv.cmd Tue May 16 00:20:06 2006
@@ -1,6 +1,5 @@
/*
- Copyright 2003-2004 The Apache Software Foundation or its licensors,
- as applicable.
+ Copyright 2003-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Modified: forrest/trunk/tools/ant/bin/complete-ant-cmd.pl
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/bin/complete-ant-cmd.pl?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
--- forrest/trunk/tools/ant/bin/complete-ant-cmd.pl (original)
+++ forrest/trunk/tools/ant/bin/complete-ant-cmd.pl Tue May 16 00:20:06 2006
@@ -1,7 +1,6 @@
#!/usr/bin/perl
#
-# Copyright 2001,2004 The Apache Software Foundation or its licensors,
-# as applicable.
+# Copyright 2001,2004 The Apache Software Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Modified: forrest/trunk/tools/ant/bin/envset.cmd
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/bin/envset.cmd?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
--- forrest/trunk/tools/ant/bin/envset.cmd (original)
+++ forrest/trunk/tools/ant/bin/envset.cmd Tue May 16 00:20:06 2006
@@ -1,7 +1,6 @@
/*
- Copyright 2003-2004 The Apache Software Foundation or its licensors,
- as applicable.
+ Copyright 2003-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Modified: forrest/trunk/tools/ant/bin/lcp.bat
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/bin/lcp.bat?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
--- forrest/trunk/tools/ant/bin/lcp.bat (original)
+++ forrest/trunk/tools/ant/bin/lcp.bat Tue May 16 00:20:06 2006
@@ -1,6 +1,5 @@
REM
-REM Copyright 2001-2004 The Apache Software Foundation or its licensors,
-REM as applicable.
+REM Copyright 2001-2004 The Apache Software Foundation
REM
REM Licensed under the Apache License, Version 2.0 (the "License");
REM you may not use this file except in compliance with the License.
Modified: forrest/trunk/tools/ant/bin/runant.pl
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/bin/runant.pl?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
--- forrest/trunk/tools/ant/bin/runant.pl (original)
+++ forrest/trunk/tools/ant/bin/runant.pl Tue May 16 00:20:06 2006
@@ -1,7 +1,6 @@
#!/usr/bin/perl
#
-# Copyright 2000-2004 The Apache Software Foundation or its licensors,
-# as applicable.
+# Copyright 2000-2004 The Apache Software Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Modified: forrest/trunk/tools/ant/bin/runant.py
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/bin/runant.py?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
--- forrest/trunk/tools/ant/bin/runant.py (original)
+++ forrest/trunk/tools/ant/bin/runant.py Tue May 16 00:20:06 2006
@@ -1,6 +1,5 @@
#!/usr/bin/python
-# Copyright 2001,2003-2004 The Apache Software Foundation or its licensors,
-# as applicable.
+# Copyright 2001,2003-2004 The Apache Software Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Modified: forrest/trunk/tools/ant/bin/runrc.cmd
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/bin/runrc.cmd?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
--- forrest/trunk/tools/ant/bin/runrc.cmd (original)
+++ forrest/trunk/tools/ant/bin/runrc.cmd Tue May 16 00:20:06 2006
@@ -1,6 +1,5 @@
/*
- Copyright 2003-2004 The Apache Software Foundation or its licensors,
- as applicable.
+ Copyright 2003-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Added: forrest/trunk/tools/ant/lib/ant-apache-oro.jar
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/lib/ant-apache-oro.jar?rev=406862&view=auto
==============================================================================
Binary file - no diff available.
Propchange: forrest/trunk/tools/ant/lib/ant-apache-oro.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Modified: forrest/trunk/tools/ant/lib/ant-apache-resolver.jar
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/lib/ant-apache-resolver.jar?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
Binary files /tmp/tmpJZXVda and /tmp/tmp4vvrv0 differ
Modified: forrest/trunk/tools/ant/lib/ant-commons-net.jar
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/lib/ant-commons-net.jar?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
Binary files - no diff available.
Modified: forrest/trunk/tools/ant/lib/ant-jsch.jar
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/lib/ant-jsch.jar?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
Binary files - no diff available.
Modified: forrest/trunk/tools/ant/lib/ant-launcher.jar
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/lib/ant-launcher.jar?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
Binary files /tmp/tmpBLXaaF and /tmp/tmpXxfV-x differ
Modified: forrest/trunk/tools/ant/lib/ant-nodeps.jar
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/lib/ant-nodeps.jar?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
Binary files /tmp/tmpBf75jb and /tmp/tmpbh_Ecw differ
Modified: forrest/trunk/tools/ant/lib/ant-trax.jar
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/lib/ant-trax.jar?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
Binary files /tmp/tmpZaahIX and /tmp/tmpT4Nufg differ
Modified: forrest/trunk/tools/ant/lib/ant.jar
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/lib/ant.jar?rev=406862&r1=406861&r2=406862&view=diff
==============================================================================
Binary files /tmp/tmpq3coiC and /tmp/tmpoH_ODQ differ
Added: forrest/trunk/tools/ant/lib/apache-jakarta-commons-net-1.4.1.jar
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/lib/apache-jakarta-commons-net-1.4.1.jar?rev=406862&view=auto
==============================================================================
Binary file - no diff available.
Propchange: forrest/trunk/tools/ant/lib/apache-jakarta-commons-net-1.4.1.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: forrest/trunk/tools/ant/lib/jsch-0.1.28.jar
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/lib/jsch-0.1.28.jar?rev=406862&view=auto
==============================================================================
Binary file - no diff available.
Propchange: forrest/trunk/tools/ant/lib/jsch-0.1.28.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: forrest/trunk/tools/ant/lib/jsch-0.1.28.jar.license.txt
URL: http://svn.apache.org/viewcvs/forrest/trunk/tools/ant/lib/jsch-0.1.28.jar.license.txt?rev=406862&view=auto
==============================================================================
--- forrest/trunk/tools/ant/lib/jsch-0.1.28.jar.license.txt (added)
+++ forrest/trunk/tools/ant/lib/jsch-0.1.28.jar.license.txt Tue May 16 00:20:06 2006
@@ -0,0 +1,30 @@
+JSch 0.0.* was released under the GNU LGPL license. Later, we have switched
+over to a BSD-style license.
+
+------------------------------------------------------------------------------
+Copyright (c) 2002,2003,2004,2005,2006 Atsuhiko Yamanaka, JCraft,Inc.
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in
+ the documentation and/or other materials provided with the distribution.
+
+ 3. The names of the authors may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,
+INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
+OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Propchange: forrest/trunk/tools/ant/lib/jsch-0.1.28.jar.license.txt
------------------------------------------------------------------------------
svn:eol-style = native
|