diff --git a/manual/Integration/jext-plugin.html b/manual/Integration/jext-plugin.html index 1d260efe5..dade832a7 100644 --- a/manual/Integration/jext-plugin.html +++ b/manual/Integration/jext-plugin.html @@ -30,8 +30,8 @@ by

You can download the plugin -at: http://sourceforge.net/projects/jext/files/OldFiles/antwork_plugin.zip/download

+at: https://sourceforge.net/projects/jext/files/OldFiles/antwork_plugin.zip/download

Installation instructions from the Readme.txt

diff --git a/manual/LICENSE b/manual/LICENSE index c7e627153..239ec947c 100644 --- a/manual/LICENSE +++ b/manual/LICENSE @@ -1,7 +1,7 @@ /* * Apache License * Version 2.0, January 2004 - * http://www.apache.org/licenses/ + * https://www.apache.org/licenses/ * * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION * diff --git a/manual/Tasks/antversion.html b/manual/Tasks/antversion.html index 1f020a87a..7f032b5f3 100644 --- a/manual/Tasks/antversion.html +++ b/manual/Tasks/antversion.html @@ -79,7 +79,7 @@ Ant homepage.

<condition property="Ant17isOnline"> <and> <antversion exactly="1.7.0"/> - <http url="http://ant.apache.org"/> + <http url="https://ant.apache.org"/> </and> </condition> diff --git a/manual/Tasks/changelog.html b/manual/Tasks/changelog.html index 041705270..2b5411b13 100644 --- a/manual/Tasks/changelog.html +++ b/manual/Tasks/changelog.html @@ -239,7 +239,7 @@ output. The following example illustrates how to generate a HTML report from the style="${ant.home}/etc/changelog.xsl"> <param name="title" expression="Ant ChangeLog"/> <param name="module" expression="ant"/> - <param name="cvsweb" expression="http://cvs.apache.org/viewcvs/"/> + <param name="cvsweb" expression="https://cvs.apache.org/viewcvs/"/> </style>

Sample Output

diff --git a/manual/Tasks/conditions.html b/manual/Tasks/conditions.html index 235f9d414..846733f58 100644 --- a/manual/Tasks/conditions.html +++ b/manual/Tasks/conditions.html @@ -611,7 +611,7 @@ firewalls.

 <condition property="offline">
-  <isreachable url="http://ibiblio.org/maven/"/>
+  <isreachable url="https://ibiblio.org/maven/"/>
 </condition>

Probe for the Maven repository being reachable.

diff --git a/manual/Tasks/copy.html b/manual/Tasks/copy.html index 03aae8dea..48f07d938 100644 --- a/manual/Tasks/copy.html +++ b/manual/Tasks/copy.html @@ -241,7 +241,7 @@ directory, flattening the directory structure.

<copy todir="dest" flatten="true"> <resources> <file file="src_dir/file1.txt"/> - <url url="http://ant.apache.org/index.html"/> + <url url="https://ant.apache.org/index.html"/> </resources> </copy> @@ -260,7 +260,7 @@ an absolute path as their names.

<file file="src_dir/file1.txt"/> <file file="src_dir/file2.txt"/> <file file="src_dir/file3.txt"/> - <url url="http://ant.apache.org/index.html"/> + <url url="https://ant.apache.org/index.html"/> </resources> </sort> </first> diff --git a/manual/Tasks/cvstagdiff.html b/manual/Tasks/cvstagdiff.html index 6647a19c3..aef891f2b 100644 --- a/manual/Tasks/cvstagdiff.html +++ b/manual/Tasks/cvstagdiff.html @@ -189,7 +189,7 @@ output. The following example illustrates how to generate an HTML report from th style="${ant.home}/etc/tagdiff.xsl"> <param name="title" expression="Ant Diff"/> <param name="module" expression="ant"/> - <param name="cvsweb" expression="http://cvs.apache.org/viewcvs/"/> + <param name="cvsweb" expression="https://cvs.apache.org/viewcvs/"/> </style>

Output

diff --git a/manual/Tasks/ejb.html b/manual/Tasks/ejb.html index 02045791d..24fb9c2e8 100644 --- a/manual/Tasks/ejb.html +++ b/manual/Tasks/ejb.html @@ -56,13 +56,13 @@ Server.

The tasks support:

diff --git a/manual/Tasks/get.html b/manual/Tasks/get.html index 356b39a42..28a68268e 100644 --- a/manual/Tasks/get.html +++ b/manual/Tasks/get.html @@ -28,7 +28,7 @@

Description

Gets files from URLs. When the verbose option is on, this task displays a . for every 100 Kb retrieved. Any URL schema supported by the runtime is valid here, -including http:, ftp: and jar:.

+including http:, https:, ftp: and jar:.

The usetimestamp option enables you to control downloads so that the remote file is only fetched if newer than the local copy. If there is no local copy, the download always takes place. When a file is downloaded, the timestamp of the downloaded file is set to the remote @@ -175,14 +175,14 @@ nested <header/> node are as follows:

Examples

-

Get the index page of http://ant.apache.org/, and store it in the +

Get the index page of https://ant.apache.org/, and store it in the file help/index.html.

-
<get src="http://ant.apache.org/" dest="help/index.html"/>
+
<get src="https://ant.apache.org/" dest="help/index.html"/>

Get the PGP keys of Ant's (current and past) release managers, if the local copy is missing or out of date. Use the verbose option for progress information.

-<get src="http://www.apache.org/dist/ant/KEYS"
+<get src="https://www.apache.org/dist/ant/KEYS"
      dest="KEYS"
      verbose="true"
      usetimestamp="true"/>
@@ -230,20 +230,20 @@ naming convention for the checksum file, of course) and validate the checksum on
 <get dest="downloads">
-  <url url="http://ant.apache.org/index.html"/>
-  <url url="http://ant.apache.org/faq.html"/>
+  <url url="https://ant.apache.org/index.html"/>
+  <url url="https://ant.apache.org/faq.html"/>
 </get>

Using custom HTTP headers

-<get src="http://ant.apache.org/index.html" dest="downloads">
+<get src="https://ant.apache.org/index.html" dest="downloads">
   <header name="header1" value="headerValue1"/>
   <header name="header2" value="headerValue2"/>
   <header name="header3" value="headerValue3"/>
 </get>
-

get the index and FAQ pages of http://ant.apache.org/, and store them in the +

get the index and FAQ pages of https://ant.apache.org/, and store them in the directory downloads which will be created if necessary.

diff --git a/manual/Tasks/jar.html b/manual/Tasks/jar.html index dd15f71e3..581ae4bb3 100644 --- a/manual/Tasks/jar.html +++ b/manual/Tasks/jar.html @@ -88,7 +88,7 @@ other than its default, add.

To cryptographically sign your JAR file, use the SignJar task on the JAR that you create from this task.

-

For creating a simple version of a JEP +

For creating a simple version of a JEP 238 multi-release jar, you don't need any special tools. Just set the required manifest entry and place the files where required, as you could see in the JEP 238 example. If you want to tune this kind of jar, @@ -521,7 +521,7 @@ JDK 6 scripting interface:

JEP 238 example: a Multi-Release JAR Files

Here we want to create a Multi-Release JAR File according the -specification JEP 238. It defines on +specification JEP 238. It defines on top of a JAR the possibility to place additional or overwriting classes in a jar, which are available according to the Java version you run.
Basically it says, that you have to set the manifest entry Multi-Release: true and place all additional or overwriting classes diff --git a/manual/Tasks/jarlib-manifest.html b/manual/Tasks/jarlib-manifest.html index 3304dc01c..ee697900e 100644 --- a/manual/Tasks/jarlib-manifest.html +++ b/manual/Tasks/jarlib-manifest.html @@ -72,7 +72,7 @@ jar. (Optional dependencies will be used if present else they will be ignored) <jarlib-resolve property="dve.library"> <extension refid="dve.ext"/> - <url url="http://www.realityforge.net/jars/dve.jar" destfile="lib/dve.jar"/> + <url url="https://www.example.com/jars/dve.jar" destfile="lib/dve.jar"/> </jarlib-resolve>

Resolve Extension to file produce by Ant build. If file does not get produced or Ant file is @@ -188,7 +188,7 @@ finally try to download it from a website. If all steps fail then throw a build <extension refid="dve.ext"/> <location location="/opt/jars/dve.jar"/> <ant antfile="../dve/build.xml" target="main" destfile="lib/dve.jar"/> - <url url="http://www.realityforge.net/jars/dve.jar" destfile="lib/dve.jar"/> + <url url="https://example.com/jars/dve.jar" destfile="lib/dve.jar"/> </jarlib-resolve> diff --git a/manual/Tasks/javac.html b/manual/Tasks/javac.html index c322dc937..30cf3b7cc 100644 --- a/manual/Tasks/javac.html +++ b/manual/Tasks/javac.html @@ -718,8 +718,8 @@ references to strings that can by used in an OS independent fashion </javac>

OpenJDK notes

-

The OpenJDK project has provided -the javac compiler +

The OpenJDK project has provided +the javac compiler as an open source project. The output of this project is a javac.jar which contains the javac compiler. This compiler may be used with the <javac> task with the use of a -Xbootclasspath/p Java argument. The argument needs to be given to the diff --git a/manual/Tasks/javah.html b/manual/Tasks/javah.html index 22b6f352f..bc92bf920 100644 --- a/manual/Tasks/javah.html +++ b/manual/Tasks/javah.html @@ -47,7 +47,7 @@ attribute:

diff --git a/manual/Tasks/pack.html b/manual/Tasks/pack.html index 5d1d1bedf..6f6dad1ec 100644 --- a/manual/Tasks/pack.html +++ b/manual/Tasks/pack.html @@ -65,11 +65,11 @@ See Library Dependencies for m
<bzip2 src="test.tar" destfile="test.tar.bz2"/>
<xz src="test.tar" destfile="test.tar.xz"/>
-

Download http://example.org/archive.tar and compress it +

Download https://example.org/archive.tar and compress it to archive.tar.gz in the project's basedir on the fly.

 <gzip destfile="archive.tar.gz">
-  <url url="http://example.org/archive.tar"/>
+  <url url="https://example.org/archive.tar"/>
 </gzip>
diff --git a/manual/Tasks/property.html b/manual/Tasks/property.html index 1d486b574..b96f90e6f 100644 --- a/manual/Tasks/property.html +++ b/manual/Tasks/property.html @@ -64,7 +64,7 @@ from a property file.

A list of predefined properties can be found here.

Since Apache Ant 1.8.0, it is possible to load properties defined in XML according -to Sun DTD, when running on Java +to Sun DTD, when running on Java 5+. For this the name of the file, resource or url has to end with .xml.

Parameters

@@ -215,8 +215,8 @@ nested classpath element.

<property file="foo.properties"/>

Read a set of properties from the -address http://www.mysite.com/bla/props/foo.properties.

-
<property url="http://www.mysite.com/bla/props/foo.properties"/>
+address https://www.mysite.com/bla/props/foo.properties.

+
<property url="https://www.mysite.com/bla/props/foo.properties"/>

Read a set of properties from a resource called foo.properties.

<property resource="foo.properties"/>
@@ -278,8 +278,8 @@ on a classpath. Here are some interesting facts about this feature

 build.compiler=jikes
 deploy.server=lucky
-deploy.port=8080
-deploy.url=http://${deploy.server}:${deploy.port}/
+deploy.port=8443 +deploy.url=https://${deploy.server}:${deploy.port}/

Notes about environment variables

diff --git a/manual/Tasks/retry.html b/manual/Tasks/retry.html index d8ad26054..f8167e4ef 100644 --- a/manual/Tasks/retry.html +++ b/manual/Tasks/retry.html @@ -55,7 +55,7 @@ a BuildException is thrown.

an unreliable network resource.

 <retry retrycount="3">
-  <get src="http://www.unreliable-server.com/unreliable.tar.gz"
+  <get src="https://www.unreliable-server.com/unreliable.tar.gz"
        dest="/home/retry/unreliable.tar.gz"/>
 </retry>
diff --git a/manual/Tasks/rmic.html b/manual/Tasks/rmic.html index 0c4f00b3e..49a9788c7 100644 --- a/manual/Tasks/rmic.html +++ b/manual/Tasks/rmic.html @@ -52,7 +52,7 @@ are the choices:

  • default—the default compiler (kaffe, sun or forking) for the platform.
  • sun—the standard compiler prior to JDK 9
  • -
  • kaffe—the standard compiler of kaffe—the standard compiler of Kaffe
  • weblogic
  • forking—(since Apache Ant 1.7) the sun compiler forked into a @@ -72,7 +72,7 @@ consult miniRMI's documentation to learn how to use it.

    CORBA support

    -

    Java 11 removes the Java EE and +

    Java 11 removes the Java EE and CORBA packages and rmic no longer supports either -iiop or -idl options. Starting with Ant 1.10.3, the rmic task will fail when using either while running Java 11+ unless you fork the task and explicitly specify an executable.

    diff --git a/manual/Tasks/scriptdef.html b/manual/Tasks/scriptdef.html index 74eaa0ed9..680f1a864 100644 --- a/manual/Tasks/scriptdef.html +++ b/manual/Tasks/scriptdef.html @@ -249,7 +249,7 @@ that Ant will not create a task of the same (namespace,localname) name pair.

    <target name="echo-task-jython"> <scriptdef language="jython" name="echo" - uri="http://example.org/script"> + uri="https://example.org/script"> <![CDATA[ self.log("text: " +self.text) ]]> @@ -257,7 +257,7 @@ self.log("text: " +self.text) </target> <target name="testEcho" depends="echo-task-jython" - xmlns:s="http://example.org/script"> + xmlns:s="https://example.org/script"> <s:echo>nested text</s:echo> </target> diff --git a/manual/Tasks/serverdeploy.html b/manual/Tasks/serverdeploy.html index 5def93880..780c66189 100644 --- a/manual/Tasks/serverdeploy.html +++ b/manual/Tasks/serverdeploy.html @@ -37,7 +37,7 @@

    At present the tasks support:

    Over time we expect further optional tasks to support additional J2EE Servers.

    diff --git a/manual/Tasks/splash.html b/manual/Tasks/splash.html index 97e20c62f..6b54470e5 100644 --- a/manual/Tasks/splash.html +++ b/manual/Tasks/splash.html @@ -107,7 +107,7 @@ that makes it clear to readers of the build exactly what is going on.

    Splash the Jakarta logo, for an initial period of 5 seconds.

    -<splash imageurl="http://jakarta.apache.org/images/jakarta-logo.gif"
    +<splash imageurl="https://jakarta.apache.org/images/jakarta-logo.gif"
             useproxy="true"
             showduration="5000"/>
    diff --git a/manual/Tasks/typedef.html b/manual/Tasks/typedef.html index 444fd7a20..243ce0687 100644 --- a/manual/Tasks/typedef.html +++ b/manual/Tasks/typedef.html @@ -45,7 +45,7 @@ attributes point to files in the format of Java property files or an xml format.

    If you are defining tasks or types that share the same classpath with multiple taskdef or typedef tasks, the corresponding classes will be loaded by different -Java ClassLoaders. Two classes with the same name loaded via different ClassLoaders are not the same class from the point of view of JVM, they don't share static variables and instances of these classes can't access private methods or attributes of instances defined by "the diff --git a/manual/Tasks/unpack.html b/manual/Tasks/unpack.html index 81c1abf08..89fff556d 100644 --- a/manual/Tasks/unpack.html +++ b/manual/Tasks/unpack.html @@ -78,11 +78,11 @@ See Library Dependencies for m a directory).

    <gunzip src="test.tar.gz" dest="subdir"/>
    -

    Download http://example.org/archive.tar.gz and expand it to archive.tar +

    Download https://example.org/archive.tar.gz and expand it to archive.tar in the project's basedir on the fly.

     <gunzip dest=".">
    -  <url url="http://example.org/archive.tar.gz"/>
    +  <url url="https://example.org/archive.tar.gz"/>
     </gunzip>
     
    diff --git a/manual/Tasks/waitfor.html b/manual/Tasks/waitfor.html index 9a9917891..2f6056f13 100644 --- a/manual/Tasks/waitfor.html +++ b/manual/Tasks/waitfor.html @@ -106,16 +106,16 @@ task. See here for the full list.

    on localhost to serve up the specified URL.

     <waitfor maxwait="3" maxwaitunit="minute" checkevery="500">
    -    <http url="http://localhost/myapp/index.html"/>
    +    <http url="https://localhost/myapp/index.html"/>
     </waitfor>

    Wait up to 10 seconds for a server on the dbserver machine to begin listening on -port 1521 and for the http://webserver/mypage.html web page to become available.

    +port 1521 and for the https://webserver/mypage.html web page to become available.

     <waitfor maxwait="10" maxwaitunit="second">
         <and>
             <socket server="dbserver" port="1521"/>
    -        <http url="http://webserver/mypage.html"/>
    +        <http url="https://webserver/mypage.html"/>
         </and>
     </waitfor>
    diff --git a/manual/Types/extension.html b/manual/Types/extension.html index 79d6c0304..c7e6e1439 100644 --- a/manual/Types/extension.html +++ b/manual/Types/extension.html @@ -90,7 +90,7 @@ target="_top">Package Versioning documentation.

    implementationVendorID="vv" implementationVendor="Apache" implementationVersion="2.0" - implementationURL="http://somewhere.com/myExt.jar"/> + implementationURL="https://somewhere.com/myExt.jar"/>

    Fully specified extension object.

    diff --git a/manual/Types/extensionset.html b/manual/Types/extensionset.html index fe16f7d7e..0cb538503 100644 --- a/manual/Types/extensionset.html +++ b/manual/Types/extensionset.html @@ -53,7 +53,7 @@ extension set. However, the extension information may be modified by attributes implementationVendorID="vv" implementationVendor="Apache" implementationVersion="2.0" - implementationURL="http://somewhere.com/myExt.jar"/> + implementationURL="https://somewhere.com/myExt.jar"/> <libfileset id="lfs" includeUrl="true" diff --git a/manual/Types/namespace.html b/manual/Types/namespace.html index 77640cebf..48c5f1422 100644 --- a/manual/Types/namespace.html +++ b/manual/Types/namespace.html @@ -64,8 +64,8 @@ URI of the XML namespace with which the type should be associated:

    -<typedef resource="org/example/tasks.properties" uri="http://example.org/tasks"/>
    -<my:task xmlns:my="http://example.org/tasks">
    +<typedef resource="org/example/tasks.properties" uri="http://example.org/tasks"/>
    +<my:task xmlns:my="http://example.org/tasks">
         ...
     </my:task>

    As the above example demonstrates, the namespace URI needs to be specified at least @@ -74,8 +74,8 @@ the xmlns attribute. This mapping can happen at any level in the build file:

    -<project name="test" xmlns:my="http://example.org/tasks">
    -    <typedef resource="org/example/tasks.properties" uri="http://example.org/tasks"/>
    +<project name="test" xmlns:my="http://example.org/tasks">
    +    <typedef resource="org/example/tasks.properties" uri="http://example.org/tasks"/>
         <my:task>
             ...
         </my:task>
    @@ -86,8 +86,8 @@
         

     <project name="test">
    -    <typedef resource="org/example/tasks.properties" uri="http://example.org/tasks"/>
    -    <task xmlns="http://example.org/tasks">
    +    <typedef resource="org/example/tasks.properties" uri="http://example.org/tasks"/>
    +    <task xmlns="http://example.org/tasks">
             ...
         </task>
     </project>
    @@ -113,8 +113,8 @@ nested config element, the build file snippet would look like this:

    -<typedef resource="org/example/tasks.properties" uri="http://example.org/tasks"/>
    -<my:task xmlns:my="http://example.org/tasks">
    +<typedef resource="org/example/tasks.properties" uri="http://example.org/tasks"/>
    +<my:task xmlns:my="http://example.org/tasks">
         <my:config a="foo" b="bar"/>
         ...
     </my:task>
    @@ -123,8 +123,8 @@ script:

    -<typedef resource="org/example/tasks.properties" uri="http://example.org/tasks"/>
    -<task xmlns="http://example.org/tasks">
    +<typedef resource="org/example/tasks.properties" uri="http://example.org/tasks"/>
    +<task xmlns="http://example.org/tasks">
         <config a="foo" b="bar"/>
         ...
     </task>
    @@ -134,8 +134,8 @@

     <typedef resource="org/example/tasks.properties"
    -    uri="http://example.org/tasks"/>
    -<my:task xmlns:my="http://example.org/tasks">
    +    uri="http://example.org/tasks"/>
    +<my:task xmlns:my="http://example.org/tasks">
         <config a="foo" b="bar"/>
         ...
     </my:task>
    @@ -161,7 +161,7 @@

    -<my:task xmlns:my="http://example.org/tasks">
    +<my:task xmlns:my="http://example.org/tasks">
         <my:config a="foo" b="bar"/>
         ...
     </my:task>
    @@ -169,7 +169,7 @@ and

    -<my:task xmlns:my="http://example.org/tasks">
    +<my:task xmlns:my="http://example.org/tasks">
         <my:config my:a="foo" my:b="bar"/>
         ...
     </my:task>
    @@ -198,8 +198,8 @@ or addConfigured(Condition) method):

    -<typedef resource="org/example/conditions.properties" uri="http://example.org/conditions"/>
    -<condition property="prop" xmlns="http://example.org/conditions">
    +<typedef resource="org/example/conditions.properties" uri="http://example.org/conditions"/>
    +<condition property="prop" xmlns="http://example.org/conditions">
         <and>
             <available file="bla.txt"/>
             <my:condition a="foo"/>
    diff --git a/manual/Types/resources.html b/manual/Types/resources.html
    index f6a44b37f..a6b56f7bf 100644
    --- a/manual/Types/resources.html
    +++ b/manual/Types/resources.html
    @@ -1277,10 +1277,10 @@ actually be reached.  It assumes that the file mirrors.txt looks li
     
     
         mirrors.txt:
    -http://best.mirror.example.org/
    +https://best.mirror.example.org/
     http://second.best.mirror.example.org/mirror/of/best/
     https://yet.another.mirror/
    -http://the.original.site/
    +https://the.original.site/
     <copy todir="${target}">
    diff --git a/manual/Types/tarfileset.html b/manual/Types/tarfileset.html
    index a53a1a6a0..d6dfefb3a 100644
    --- a/manual/Types/tarfileset.html
    +++ b/manual/Types/tarfileset.html
    @@ -134,7 +134,7 @@ and ownership attributes.

    <copy todir="some-dir"> <tarfileset includes="lib/**"> <bzip2resource> - <url url="http://example.org/dist/some-archive.tar.bz2"/> + <url url="https://example.org/dist/some-archive.tar.bz2"/> </bzip2resource> </tarfileset> </copy>
    diff --git a/manual/ide.html b/manual/ide.html index a4eff57b5..dfafe10e0 100644 --- a/manual/ide.html +++ b/manual/ide.html @@ -48,7 +48,7 @@ All the modern Java IDEs support Apache Ant almost out of the box. integration: GUI selection of targets, execution, hyperlink to compilation errors
  • - NetBeans IDE uses Ant as the basis for its + NetBeans IDE uses Ant as the basis for its project system starting with the 4.0 release
  • diff --git a/manual/install.html b/manual/install.html index 098384dc2..5f91b0f39 100644 --- a/manual/install.html +++ b/manual/install.html @@ -248,7 +248,7 @@ The more up-to-date the version of Java, the more Ant tasks you get.

    Open Source Java Runtimes

    -The Ant team strongly supports users running Ant on OpenJDK and +The Ant team strongly supports users running Ant on OpenJDK and other open source Java runtimes, and so strives to have a product that works well on those platforms.

    @@ -836,7 +836,7 @@ these tasks available. Please refer to the Installing A jython.jar Python with script task - http://www.jython.org/ + https://www.jython.org/ jacl.jar and tcljava.jar @@ -857,12 +857,12 @@ these tasks available. Please refer to the Installing A jruby.jar Ruby with script task - http://jruby.org/ + https://jruby.org/ judo.jar Judo language with script task - http://www.judoscript.org/ + used to be at http://www.judoscript.org/ which is now not available anymore. commons-logging.jar @@ -902,7 +902,7 @@ these tasks available. Please refer to the Installing A mail task with MIME encoding, diff --git a/manual/properties.html b/manual/properties.html index c425e8a87..c058af9d3 100644 --- a/manual/properties.html +++ b/manual/properties.html @@ -287,7 +287,7 @@ public class ToStringEvaluator implements PropertyHelper.PropertyEvaluator {

    then the syntax can be used to pass in resource subclasses previously defined as references like

    -<url url="http://ant.apache.org/" id="anturl"/>
    +<url url="https://ant.apache.org/" id="anturl"/>
     <my:task attr="${ant.refid:anturl}"/>

    If/Unless Attributes

    diff --git a/manual/tasksoverview.html b/manual/tasksoverview.html index 98f01a6ec..f8e36c30d 100644 --- a/manual/tasksoverview.html +++ b/manual/tasksoverview.html @@ -172,7 +172,7 @@ documentation.

    JDepend

    Invokes - the JDepend parser. This parser "traverses a set of Java source-file directories and generates design-quality metrics for each Java package".