File: ignore-benchmarks.diff

package info (click to toggle)
libcommons-lang3-java 3.8-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,780 kB
  • sloc: java: 76,785; xml: 4,511; makefile: 4; sh: 1
file content (20 lines) | stat: -rw-r--r-- 571 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: Ignore the JMH benchmarks
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/pom.xml
+++ b/pom.xml
@@ -711,6 +711,14 @@
           <excludeFilterFile>${basedir}/findbugs-exclude-filter.xml</excludeFilterFile>
         </configuration>
       </plugin>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <testExcludes>
+            <testExclude>**/HashSetvBitSetTest*</testExclude>
+          </testExcludes>
+        </configuration>
+      </plugin>
     </plugins>
 
   </build>