 Adapt Ant to use the new functionalities of commons-net 1.4.0 to enable greater configurability of the server:
Month names other than English, date formats other than the standard ones (such as all-numeric timestamps
on unix), and different server time zones can now be supported in Ant.
PR:30706, 33443
Obtained from:
Submitted by: Neeme Praks
Reviewed by: Steve Cohen
CVS: ----------------------------------------------------------------------
CVS: PR:
CVS: If this change addresses a PR in the problem report tracking
CVS: database, then enter the PR number(s) here.
CVS: Obtained from:
CVS: If this change has been taken from another system, such as NCSA,
CVS: then name the system in this line, otherwise delete it.
CVS: Submitted by:
CVS: If this code has been contributed to Apache by someone else; i.e.,
CVS: they sent us a patch or a new module, then include their name/email
CVS: address here. If this is your work then delete this line.
CVS: Reviewed by:
CVS: If we are doing pre-commit code reviews and someone else has
CVS: reviewed your changes, include their name(s) here.
CVS: If you have not had it reviewed then delete this line.
git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278252 13f79535-47bb-0310-9956-ffa450edef68
20 years ago |
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- # Licensed to the Apache Software Foundation (ASF) under one or more
- # contributor license agreements. See the NOTICE file distributed with
- # this work for additional information regarding copyright ownership.
- # The ASF licenses this file to You 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.
-
- #this file declares the libraries for use in
- #a given release of the components
-
- #if you change this, change the checksum to match
- m2.version=2.0.4
- m2.url=http://ibiblio.org/maven2/
- m2.artifact-name=maven-artifact-ant
- m2.jar.name=${m2.artifact-name}-${m2.version}-dep.jar
- #this is the URL of the antlib library, that is pulled down for everything else.
- m2.antlib.url=${m2.url}/org/apache/maven/${m2.artifact-name}/${m2.version}/${m2.jar.name}
- #this is the sha1 checksum of the artifact
- m2.sha1.checksum=4e7ddfdb91600e9b59bb965ff8eef2f06015df50
-
-
- #versions of different libraries. Please keep in alphabetical order, except
- #when a specific dependency forces them to be out-of-order
- antlr.version=2.7.2
- bcel.version=5.1
- bsf.version=2.4.0
- bsh.version=2.0b4
- bsh-core.version=${bsh.version}
- commons-net.version=1.4.0
- commons-logging.version=1.0.4
- commons-logging-api.version=${commons-logging.version}
- jasper-compiler.version=4.0.6
- jasper-runtime.version=${jasper-compiler.version}
- jdepend.version=2.7
- jruby.version=0.8.3
- junit.version=3.8.2
- jsch.version=0.1.29
- jython.version=2.1
- log4j.version=1.2.13
- #js is the javascript implementation of the rhino project
- js.version=1.6R3
- oro.version=2.0.8
- regexp.version=1.3
- servlet-api.version=2.3
- which.version=1.0
- xerces.version=2.9.0
- xercesImpl.version=${xerces.version}
- #should be in sync w/ xerces, but not in the maven repository
- #xmlParserAPIs.version=${xerces.version}
- #xmlParserAPIs.version=2.6.1
- xml-apis.version=1.3.04
- xalan.version=2.7.0
- xml-resolver.version=1.1
- mail.version=1.4
- #paired
- jacl.version=1.2.6
- tcljava.version=${jacl.version}
|