You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2011/10/19 17:32:59 UTC

svn commit: r1186272 - /commons/proper/bsf/trunk/pom.xml

Author: sebb
Date: Wed Oct 19 15:32:58 2011
New Revision: 1186272

URL: http://svn.apache.org/viewvc?rev=1186272&view=rev
Log:
Allow compilation to work for all but netrexx (tests don't work yet)

Modified:
    commons/proper/bsf/trunk/pom.xml

Modified: commons/proper/bsf/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/bsf/trunk/pom.xml?rev=1186272&r1=1186271&r2=1186272&view=diff
==============================================================================
--- commons/proper/bsf/trunk/pom.xml (original)
+++ commons/proper/bsf/trunk/pom.xml Wed Oct 19 15:32:58 2011
@@ -154,7 +154,7 @@
                 <configuration>
                     <!-- engine dependencies have not yet been sorted -->
                     <excludes>
-                        <exclude>org/apache/bsf/engines/**</exclude>
+                        <exclude>org/apache/bsf/engines/netrexx/**</exclude>
                     </excludes>
                 </configuration>
             </plugin>
@@ -173,9 +173,6 @@
                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-surefire-plugin</artifactId>
                 <configuration>
-                    <includes>
-                        <include>**/*TestCase.java</include>
-                    </includes>
                     <excludes>
                         <exclude>**/Abstract*</exclude>
                     </excludes>
@@ -214,6 +211,36 @@
             <version>3.8.2</version>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>commons-jexl</groupId>
+            <artifactId>commons-jexl</artifactId>
+            <version>1.1</version>
+        </dependency>
+        <dependency>
+            <groupId>rhino</groupId>
+            <artifactId>js</artifactId>
+            <version>1.7R2</version>
+        </dependency>
+        <dependency>
+            <groupId>jython</groupId>
+            <artifactId>jython</artifactId>
+            <version>2.1</version>
+        </dependency>
+        <dependency>
+            <groupId>xalan</groupId>
+            <artifactId>xalan</artifactId>
+            <version>2.7.0</version>
+        </dependency>
+        <dependency>
+            <groupId>jacl</groupId>
+            <artifactId>jacl</artifactId>
+            <version>1.2.6</version>
+        </dependency>
+        <dependency>
+            <groupId>jacl</groupId>
+            <artifactId>tcljava</artifactId>
+            <version>1.2.6</version>
+        </dependency>
     </dependencies>
 
 </project>