File: 01-disable-beanmaptestcase.patch

package info (click to toggle)
commons-beanutils 1.10.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,628 kB
  • sloc: java: 33,005; xml: 2,290; makefile: 4; sh: 1
file content (23 lines) | stat: -rw-r--r-- 806 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Description: Disables the BeanMapTestCase which relies on the BulkTest class
 from commons-collections-testframework which is not packaged in Debian
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/pom.xml
+++ b/pom.xml
@@ -106,6 +106,16 @@
       <plugins>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <configuration>
+            <testExcludes>
+              <exclude>**/BeanMapTestCase.java</exclude>
+            </testExcludes>
+          </configuration>
+        </plugin>
+
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-surefire-plugin</artifactId>
             <configuration>
               <forkMode>pertest</forkMode>