File: ignore-benchmarks.diff

package info (click to toggle)
libcommons-lang3-java 3.17.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,184 kB
  • sloc: java: 95,090; xml: 5,176; makefile: 4; sh: 1
file content (20 lines) | stat: -rw-r--r-- 580 bytes parent folder | download | duplicates (2)
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
@@ -309,6 +309,14 @@
           <excludeFilterFile>${basedir}/src/conf/spotbugs-exclude-filter.xml</excludeFilterFile>
         </configuration>
       </plugin>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <testExcludes>
+            <testExclude>**/HashSetvBitSetTest*</testExclude>
+          </testExcludes>
+        </configuration>
+      </plugin>
     </plugins>
   </build>