Simplify build plugin declaration.
There is no need to copy/paste the maven-antrun-plugin and it's
dependencies in every fragment, better done once in the parent pom.
diff --git a/bundles/binaries-parent/pom.xml b/bundles/binaries-parent/pom.xml
index 4e71050..65abeb3 100644
--- a/bundles/binaries-parent/pom.xml
+++ b/bundles/binaries-parent/pom.xml
@@ -58,6 +58,30 @@
</goals>
</execution>
</executions>
+ <dependencies>
+ <dependency>
+ <groupId>com.sun</groupId>
+ <artifactId>tools</artifactId>
+ <version>0.0.0</version>
+ <scope>system</scope>
+ <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>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-apache-bsf</artifactId>
+ <version>1.8.3</version>
+ </dependency>
+ </dependencies>
</plugin>
</plugins>
</build>