Bug 458183 - Update maven antrun plugin configuration.

Don't define maven-antrun-plugin version but rely on parent's
pluginManagement version.
Update ant-apache-bsf dependency of the plugin to match ant version used
and drop direct bsf dependency as it's proper dependency of
ant-apache-bsf nowadays. Update rhino to 1.7R4.

Change-Id: Ie36bc7a2c0cabadbf8261ed7db27fc111e7d83ee
Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
diff --git a/bundles/binaries-parent/pom.xml b/bundles/binaries-parent/pom.xml
index 346001f..98200ec 100644
--- a/bundles/binaries-parent/pom.xml
+++ b/bundles/binaries-parent/pom.xml
@@ -56,7 +56,6 @@
       </plugin>
       <plugin>
         <artifactId>maven-antrun-plugin</artifactId>
-        <version>1.7</version>
         <executions>
           <execution>
             <id>normal</id>
@@ -81,19 +80,14 @@
             <systemPath>${toolsjar}</systemPath>
           </dependency>
           <dependency>
-            <groupId>bsf</groupId>
-            <artifactId>bsf</artifactId>
-            <version>2.4.0</version>
-          </dependency>
-          <dependency>
-            <groupId>rhino</groupId>
-            <artifactId>js</artifactId>
-            <version>1.7R2</version>
+            <groupId>org.mozilla</groupId>
+            <artifactId>rhino</artifactId>
+            <version>1.7R4</version>
           </dependency>
           <dependency>
             <groupId>org.apache.ant</groupId>
             <artifactId>ant-apache-bsf</artifactId>
-            <version>1.8.3</version>
+            <version>1.9.4</version>
           </dependency>
         </dependencies>
       </plugin>