Use RAT bundle jar rather than individual jars plus unspecified dependencies

git-svn-id: https://svn.apache.org/repos/asf/creadur/rat/trunk@1625437 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/apache-rat-tasks/src/site/apt/examples/custom.apt b/apache-rat-tasks/src/site/apt/examples/custom.apt
index f0a7eb2..acf5e11 100644
--- a/apache-rat-tasks/src/site/apt/examples/custom.apt
+++ b/apache-rat-tasks/src/site/apt/examples/custom.apt
@@ -121,9 +121,7 @@
 
 -------
 <path id="rat-classpath">
-    <pathelement location="YOUR-PATH-TO/apache-rat-tasks.jar"/>
-    <pathelement location="YOUR-PATH-TO/apache-rat-core.jar"/>
-    ... other dependencies ...
+    <pathelement location="YOUR-PATH-TO/apache-rat-${version}.jar"/>
     <pathelement location="YOUR-PATH-TO/yasl-matcher.jar"/>
 </path>
 <taskdef
diff --git a/apache-rat-tasks/src/site/apt/index.apt b/apache-rat-tasks/src/site/apt/index.apt
index 330b215..0d1ce30 100644
--- a/apache-rat-tasks/src/site/apt/index.apt
+++ b/apache-rat-tasks/src/site/apt/index.apt
@@ -47,9 +47,7 @@
 <taskdef
     resource="org/apache/rat/anttasks/antlib.xml">
     <classpath>
-        <pathelement location="YOUR-PATH-TO/apache-rat-tasks.jar"/>
-        <pathelement location="YOUR-PATH-TO/apache-rat-core.jar"/>
-        ... other dependencies ...
+        <pathelement location="YOUR-PATH-TO/apache-rat-${version}.jar"/>
     </classpath>
 </taskdef>
 -------
@@ -66,9 +64,7 @@
     uri="antlib:org.apache.rat.anttasks"
     resource="org/apache/rat/anttasks/antlib.xml">
     <classpath>
-        <pathelement location="YOUR-PATH-TO/apache-rat-tasks.jar"/>
-        <pathelement location="YOUR-PATH-TO/apache-rat-core.jar"/>
-        ... other dependencies ...
+        <pathelement location="YOUR-PATH-TO/apache-rat-${version}.jar"/>
     </classpath>
 </taskdef>
 -------