Index: dev-tools/maven/README.maven
===================================================================
--- dev-tools/maven/README.maven	(revision 1309491)
+++ dev-tools/maven/README.maven	(working copy)
@@ -73,8 +73,12 @@
 
          svn update
          ant get-maven-poms
-         mvn -N -Pbootstrap install
+         mvn -N -Pbootstrap install [ -Divy.default.ivy.user.dir=... ]
 
+         If your ivy user directory is not in the default location, you can
+         specify it via -Divy.default.ivy.user.dir=... -- otherwise you don't
+         need to give this property setting.
+
    The details, followed by some example Maven commands:
 
    1. Prerequisites: JDK 1.5+; Maven 2.2.1 or 3.0.X
@@ -105,8 +109,12 @@
       are not available from public Maven repositories (a.k.a. "non-mavenized
       dependencies"):
 
-         mvn -N -Pbootstrap install
+         mvn -N -Pbootstrap install [ -Divy.default.ivy.user.dir=... ]
 
+         If your ivy user directory is not in the default location, you can
+         specify it via -Divy.default.ivy.user.dir=... -- otherwise you don't
+         need to give this property setting.
+
       Note that you will need to do this whenever changes to the non-Mavenized
       dependencies are committed.  It's a good idea to follow every
       "svn update" with "ant get-maven-poms" and "mvn -N -Pbootstrap install"
Index: dev-tools/maven/pom.xml.template
===================================================================
--- dev-tools/maven/pom.xml.template	(revision 1309491)
+++ dev-tools/maven/pom.xml.template	(working copy)
@@ -417,7 +417,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-antrun-plugin</artifactId>
-          <version>1.6</version>
+          <version>1.7</version>
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
@@ -659,6 +659,33 @@
         <plugins>
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <executions>
+              <execution>
+                <phase>install</phase>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+                <configuration>
+                  <target>
+                    <!-- Retrieve the patched jetty and jetty-util jars via ivy -->
+                    <ant antfile="solr/example/build.xml" target="resolve" inheritall="false">
+                      <property name="ivy.default.ivy.user.dir" value="${ivy.default.ivy.user.dir}"/>
+                    </ant>
+                  </target>
+                </configuration>
+              </execution>
+            </executions>
+            <dependencies>
+              <dependency>
+                <groupId>org.apache.ivy</groupId>
+                <artifactId>ivy</artifactId>
+                <version>2.2.0</version>
+              </dependency>
+            </dependencies>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-install-plugin</artifactId>
             <executions>
               <execution>
