diff --git a/docs/faq.html b/docs/faq.html index 79b3ec0b9..1efb343bc 100644 --- a/docs/faq.html +++ b/docs/faq.html @@ -250,6 +250,9 @@
There are many reasons why Ant doesn't behave as + expected, not all of them are due to Ant bugs. See our Having Problems? page for hints that + may help pinning down the reasons for your problem.
+Why does Ant always recompile all my Java files?
diff --git a/docs/problems.html b/docs/problems.html index 30a7d42b2..f08fd5530 100644 --- a/docs/problems.html +++ b/docs/problems.html @@ -184,6 +184,28 @@ you in the right direction.Many tools include a version of Ant and some Operating + Systems even install it by default now, so you may have a + version of Ant installed that you haven't been aware of.
+One of the first things to do is to run
+
+ ant -version
+
+ and
+
+ ant -diagnostics
+
+ to be sure. Also, we highly recommend that you run Ant with
+ an empty CLASSPATH. If any other version of Ant can be
+ loaded from the CLASSPATH, many types of errors may happen
+ because of incompatible classes being loaded.
See the FAQ for some examples, but many + other problems are a result of an old version of Ant on your + system as well.
+There are many reasons why Ant doesn't behave as + expected, not all of them are due to Ant bugs. See our Having Problems? page for hints that + may help pinning down the reasons for your problem.
+Many tools include a version of Ant and some Operating + Systems even install it by default now, so you may have a + version of Ant installed that you haven't been aware of.
+ +One of the first things to do is to run
+
+ ant -version
+
+ and
+
+ ant -diagnostics
+
+ to be sure. Also, we highly recommend that you run Ant with
+ an empty CLASSPATH. If any other version of Ant can be
+ loaded from the CLASSPATH, many types of errors may happen
+ because of incompatible classes being loaded.
See the FAQ for some examples, but many + other problems are a result of an old version of Ant on your + system as well.
+ +The first step to take when you have a problem with Ant is to read